Skip to main content
1 of 2
eldo
  • 84.7k
  • 6
  • 94
  • 210

Maybe this is what you want?

scale = 0.1; p1 = ListPlot[{{-0.4, -0.24}}, PlotStyle -> {GrayLevel[0.4], PointSize[0.09]}]; p2 = Graphics[{GrayLevel[0.4], Ellipsoid[{0.9, 0.6}, {3, 2} scale]}]; Show[{p1, p2}, PlotRange -> All, ImageSize -> 300] 

enter image description here

You have to scale / rescale the ellipsoid, not the total graphics!

eldo
  • 84.7k
  • 6
  • 94
  • 210