| Author |
Comment/Response |
Nasser M. Abbasi
|
11/24/12 00:58am
To have same size images, use the ImageSize option
SetOptions[Plot, {Axes -> False, Frame -> True, ImageSize -> 300}];
rys1 = Plot[x^2, {x, -2, 2}, FrameLabel -> {{"Hej", "Hej hej"}, {"Hej hej", "Hej hej"}}]
rys2 = Plot[x^3, {x, -2, 2}, FrameTicks -> {None}]
GraphicsGrid[{{rys1, rys2}}, Frame -> All, Spacings -> {5, 5}, Alignment -> Center]
URL: , |
|