Skip to main content

generative art - Playing with Matrix falling code in Mathematica


I was trying to create a Matrix falling code image with Mathematica. Here is my code:


mcolors=Blend[{{0.00,Darker[Green,0.7]},{0.90,Darker@Green},{0.90,Lighter[Green]},{1.00,Lighter[Green,0.9]}},#]&;
(*DensityPlot[x,{x,0,1},{y,0,1},ColorFunction\[Rule]mcolors,ColorFunctionScaling\[Rule]False,AspectRatio\[Rule]0.2]*)

stringColum[n_,opacity_]:=Module[{letters,fallingCode},


letters=MapIndexed[Text@Style[#1,mcolors[#2[[1]]/n],Opacity[opacity],Bold,14,FontFamily->"Courier"]&,FromCharacterCode/@RandomInteger[{48,90},n]];

fallingCode=Column[
letters
,Background->None
,Spacings->-0.4
,Alignment->Center
]
]


layer1=Graphics[Table[Inset[stringColum[RandomInteger[{1,30}],1.0],Scaled[{i,RandomReal[{0.7,1}]}],Top],{i,0.000,1,0.05}],PlotRange->All];
layer2=Graphics[Table[Inset[stringColum[RandomInteger[{1,30}],0.4],Scaled[{i,RandomReal[{0.7,1}]}],Top],{i,0.025,1,0.05}],PlotRange->All];

Show[layer1,layer2,AspectRatio->1,Background-> Black,ImageSize-> {600,500}]

Where I get as result images like this:


enter image description here


Not very exciting when compared to this one: enter image description here


How can I improve that?



Some itens that I see.



  1. I see a blur that I don't know as to reproduce using Blur, for different layers.

  2. The letter are not just A to Z letters.

  3. The columns space are not linear.

  4. I don't like the way I handler all the code. It's sound to complex in Graphics part.



Answer



First, define the dimensions and colors associated with our matrix:


{mheight, mwidth} = mdim = {12, 20};

mdepth = 20;

mcolors =
Reverse@Array[
Blend[{{0, Darker[Green, 0.9]}, {0.4, Darker[Green]}, {0.6,
Darker[Green]}, {0.90, Lighter[Green]}, {1,
Lighter[Green, 0.8]}}, #/(mdepth - 1)] &, mdepth, 0];

Next, define some useful character ranges:


crange[digits] = Range[48, 57];

crange[punc] =
Join[Range[33, 47], Range[58, 64], Range[91, 96], Range[123, 126]];
crange[lower] = Range[97, 122];
crange[upper] = Range[65, 90];
crange[hebrew] = Range[1488, 1514];
crange[greeklower] = Range[945, 969];
crange[greekupper] = DeleteCases[Range[913, 937], 930];
crange[cyrillicupper] = Range[1040, 1071];
crange[cyrilliclower] = Range[1072, 1103];
crange[katakana] = Range[12449, 12538];

crange[hiragana] = Range[12353, 12438];
crange[hangul] = Range[44032, 55211];
crange[hanzi] = Range[13312, 19901];

If you look at the matrix image, they don't really use that many funny characters, just a sprinkling, and they don't use all available sets. Here's a nice mix:


mrandomchar := 
FromCharacterCode[
RandomChoice[
crange[RandomChoice[{0.5, 0.1, 0.3, 0.01, 0.04, 0.04} -> {digits,
punc, upper, katakana, greeklower, cyrillicupper}]]]]


The graphic will be made by masking characters onto swatches of our colors, which we make here:


black = Rasterize[
Grid[{{""}}, Background -> Black, ItemSize -> {1, 1},
Spacings -> 0], Background -> Black, RasterSize -> 20,
ImageSize -> 20];

greens = Rasterize[
Grid[{{""}}, Background -> #, ItemSize -> {1, 1}, Spacings -> 0],
Background -> #, RasterSize -> 20, ImageSize -> 20 ] & /@

mcolors;

We initialize the matrix to blackness and add a drip in the middle to start things off:


init := Module[{},
drips = {{0, mwidth/2}}; ClearAll[matrix];
matrix = Array[{mdepth + 1, black} &, mdim];]

At each step, we let the drips drip down one square. We add new drips with Poisson-distributed probability with expectation 0.8 drips per step. Each time a character has achieved 1/5 of maximum age, we blur it more and we track the age of each character. We also throw some random character blips in with Poisson expectation 0.5 per step.


step := Module[{}, 
drips = Join[

Select[# + {1, 0} & /@ drips, First[#] <= mheight &], {1, #} & /@
RandomInteger[{1, mwidth}, {Random[PoissonDistribution[0.8]]}]];
matrix = Map[
If[#[[1]] >= mdepth, {mdepth + 1, black}, {#[[1]] + 1,
If[Mod[#[[1]], Ceiling[mdepth/5]] == 0, Blur, Identity][#[[
2]]]}] &,
matrix, {2}]; (matrix[[##]] = {1,
Rasterize[
Grid[{{Style[mrandomchar, mcolors[[1]],
FontFamily -> "Courier", FontWeight -> Bold]}},

Background -> Black, ItemSize -> {1, 1}, Spacings -> 0],
Background -> Black, RasterSize -> 20, ImageSize -> 20]}) & @@@
Join[drips,(*dots*)
Table[{RandomInteger[{1, mheight}],
RandomInteger[{1, mwidth}]}, {Random[
PoissonDistribution[0.5]]}]];]

Iterate this for a hundred steps to get a nice animation:


init; anim = {};
Monitor[Do[step; AppendTo[anim, matrix], {i, 100}], i]


Render the graphic:


Parallelize[
Show[ImageAssemble[
Map[If[#[[1]] <= mdepth,
ImageMultiply[greens[[#[[1]]]], #[[2]]], #[[2]]] &, #, {2}]],
ImageSize -> Automatic] & /@ anim]

Resulting in


Matrix



EDIT: Update for speed! I originally envisioned this answer as being updated in real-time, not just exported to a graphic. These improvements will get us closer. First, prerender all our characters; calls to Rasterize take at least 0.3s, which is too long for dynamic updating. As long as we don't prerender Hangul or Hanzi, this takes less than a minute and a few MB.


(raster[#] = 
ColorConvert[
Rasterize[
Grid[{{Style[FromCharacterCode[#], White,
FontFamily -> "Courier", FontWeight -> Bold]}},
ItemSize -> {1, 1}], Background -> Black, RasterSize -> 20,
ImageSize -> 200], "Grayscale"]) & /@
Join @@ (crange /@ {digits, punc, lower, upper, hebrew, greeklower,
greekupper, cyrilliclower, cyrillicupper, katakana, hiragana});


Now we just need a random code instead of a random character:


mrandomcode := 
RandomChoice[
crange[RandomChoice[{0.5, 0.1, 0.3, 0.01, 0.04, 0.04} -> {digits,
punc, upper, hebrew, greeklower, cyrillicupper}]]]

Make sure that our black is also in grayscale; in this new scheme, we don't need the greens at all, just the colors.


black = ColorConvert[
Rasterize[Grid[{{""}}, ItemSize -> {1, 1}], Background -> Black,

RasterSize -> 20, ImageSize -> 20], "Grayscale"]

This lets us take the expensive calls to Rasterize out of our update step. Reversing the update order saves us calls to Blur when the blurred character is about to get clobbered anyway.


step := (drips = 
Join[Select[# + {1, 0} & /@ drips,
First[#] <= mheight &], {1, #} & /@
RandomInteger[{1, mwidth}, {Random[PoissonDistribution[0.8]]}]];
(matrix[[##]] = {0, raster[mrandomcode]}) & @@@
Join[drips,(*dots*)
Table[{RandomInteger[{1, mheight}],

RandomInteger[{1, mwidth}]}, {Random[
PoissonDistribution[0.5]]}]];
matrix =
Map[If[#[[1]] >= mdepth, {mdepth + 1, black}, {#[[1]] + 1,
If[Mod[#[[1]], Ceiling[mdepth/5]] == 0 && #[[1]] > 0, Blur,
Identity][#[[2]]]}] &, matrix, {2}])

On my system, step now takes 0.06s and the render takes 0.08s, so now we can enjoy the proceedings in a dynamic graphic:


Dynamic[Show[
ImageAssemble[

Map[If[#[[1]] <= mdepth,
ImageMultiply[#[[2]], mcolors[[Max[1, #[[1]]]]]], #[[2]]] &,
matrix, {2}]], ImageSize -> Automatic]]
init;
anim = Table[step, {i, 100}];

Comments

Popular posts from this blog

functions - Get leading series expansion term?

Given a function f[x] , I would like to have a function leadingSeries that returns just the leading term in the series around x=0 . For example: leadingSeries[(1/x + 2)/(4 + 1/x^2 + x)] x and leadingSeries[(1/x + 2 + (1 - 1/x^3)/4)/(4 + x)] -(1/(16 x^3)) Is there such a function in Mathematica? Or maybe one can implement it efficiently? EDIT I finally went with the following implementation, based on Carl Woll 's answer: lds[ex_,x_]:=( (ex/.x->(x+O[x]^2))/.SeriesData[U_,Z_,L_List,Mi_,Ma_,De_]:>SeriesData[U,Z,{L[[1]]},Mi,Mi+1,De]//Quiet//Normal) The advantage is, that this one also properly works with functions whose leading term is a constant: lds[Exp[x],x] 1 Answer Update 1 Updated to eliminate SeriesData and to not return additional terms Perhaps you could use: leadingSeries[expr_, x_] := Normal[expr /. x->(x+O[x]^2) /. a_List :> Take[a, 1]] Then for your examples: leadingSeries[(1/x + 2)/(4 + 1/x^2 + x), x] leadingSeries[Exp[x], x] leadingSeries[(1/x + 2 + (1 - 1/x...

mathematical optimization - Minimizing using indices, error: Part::pkspec1: The expression cannot be used as a part specification

I want to use Minimize where the variables to minimize are indices pointing into an array. Here a MWE that hopefully shows what my problem is. vars = u@# & /@ Range[3]; cons = Flatten@ { Table[(u[j] != #) & /@ vars[[j + 1 ;; -1]], {j, 1, 3 - 1}], 1 vec1 = {1, 2, 3}; vec2 = {1, 2, 3}; Minimize[{Total@((vec1[[#]] - vec2[[u[#]]])^2 & /@ Range[1, 3]), cons}, vars, Integers] The error I get: Part::pkspec1: The expression u[1] cannot be used as a part specification. >> Answer Ok, it seems that one can get around Mathematica trying to evaluate vec2[[u[1]]] too early by using the function Indexed[vec2,u[1]] . The working MWE would then look like the following: vars = u@# & /@ Range[3]; cons = Flatten@{ Table[(u[j] != #) & /@ vars[[j + 1 ;; -1]], {j, 1, 3 - 1}], 1 vec1 = {1, 2, 3}; vec2 = {1, 2, 3}; NMinimize[ {Total@((vec1[[#]] - Indexed[vec2, u[#]])^2 & /@ R...

plotting - Plot 4D data with color as 4th dimension

I have a list of 4D data (x position, y position, amplitude, wavelength). I want to plot x, y, and amplitude on a 3D plot and have the color of the points correspond to the wavelength. I have seen many examples using functions to define color but my wavelength cannot be expressed by an analytic function. Is there a simple way to do this? Answer Here a another possible way to visualize 4D data: data = Flatten[Table[{x, y, x^2 + y^2, Sin[x - y]}, {x, -Pi, Pi,Pi/10}, {y,-Pi,Pi, Pi/10}], 1]; You can use the function Point along with VertexColors . Now the points are places using the first three elements and the color is determined by the fourth. In this case I used Hue, but you can use whatever you prefer. Graphics3D[ Point[data[[All, 1 ;; 3]], VertexColors -> Hue /@ data[[All, 4]]], Axes -> True, BoxRatios -> {1, 1, 1/GoldenRatio}]