| Author |
Comment/Response |
Peter Pein
|
05/04/08 09:25am
Hi,
according to http://reference.wolfram.com/mathematica/ref/Show.html?q=Show&lang=en
Show[
ListPlot[{{0.75, 0.7}, {1.5, 1}}, PlotStyle -> {Blue, PointSize[1/30]}],
Plot[Cos[x - 3/2], {x, 0, Pi/2}]
]
should work in version 6.
In v5.2 you can use DisplayTogether[] or
Show[
Block[{$DisplayFunction = Identity},
{ListPlot[{{0.75, 0.7}, {1.5, 1}}, PlotStyle -> {Blue, PointSize[1/30]}],
Plot[Cos[x - 3/2], {x, 0, Pi/2}]}
]]
Peter
URL: , |
|