FlatEllipsoid[x_, y_, dz_] := dz^2 + x^2/25 + y^2/9
RandomOffsets =
Table[RandomReal[UniformDistribution[{-1, 1}]], {i, 100}];
g=Table[ContourPlot[
FlatEllipsoid[x, y, RandomOffsets[[i*j]]] == 1, {x, -5,
5}, {y, -3.5, 3.5}, PlotRange -> {{-5.5, 5.5}, {-3.5, 3.5}},
AspectRatio -> 0.6], {i, 1, 10}, {j, 1, 10}]
When I wrap g to GraphicsGrid it gives a messy output. What is the proper way to combine the graphic objects of g?







GraphicsGridis not bad per se, you can e.g. simply use a dedicatedImageSizeeither in your for your plots or theGraphicsGrid. – Yves Klett Dec 02 '15 at 13:45