Hey,
I have a very "heavy" calculation, which I want to speed-up. How do I tell Mathematica to evaluate "Plot" with specific spacing, say 0.1 by 0.1 to 0.9? Instead of Plot[Func., {x,0.1,0.9}] which let's it choose the spacing itself? In Matlab, this is the difference between [0.1:0.9] and [0.1:0.1:0.9]...
Thanks! Erez .
Hi Erez,
DiscretePlot does what you are looking for. An example with spacing 0.1:
DiscretePlot[Sin[t], {t, 0, 2, 0.1}]
The Joined option can be used to let DiscretePlot "fake" a continuous plot:
DiscretePlot[Sin[t], {t, 0, 2, 0.1}, Joined -> True, Filling -> None]