English: (*The stratification process redistributes the random elements into a \
relatively homogeneous group and then samples randomly. Every element \
in the original set is uniquely reassigned to one stratum.*)
\
tinyColor[color_, point_] := {PointSize[Small], color, Point[point]}
colorChoose[point_] := tinyColor[Blue, point]
Clear[r, n];
r = 100;
n = r^2;
darts = RandomReal[{0, 1}, {n, 2}];
coloredDarts = ParallelMap[colorChoose, darts];
(*This mathematical image was created with Mathematica. The stratification process redistributes the random elements into a \
relatively homogeneous group and then samples randomly. Every element \
in the original set is uniquely reassigned to one stratum. Source code for this image is available below.*)
\
tinyColor[color_, point_] := {PointSize[Small], color, Point[point]}
colorChoose[point_] := tinyColor[Blue, point]
Clear[r, n];
r = 100;
n = r^2;
darts = RandomReal[{0, 1}, {n, 2}];
coloredDarts = ParallelMap[colorChoose, darts];
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.