I am trying to do a approximation plot with Runge Kutta. In matlab, the discrete plot I use is "scatterplot".
Unfortunately because of so many data points, the data points get mashed in and forms a line almost.
Also each data point is a giant empty circle. I was wonder if it is possible to just plot dots.
Examples of what I am getting.
is it possible to make it more sparse and dotted points instead of void circles?
Thanks


From the Matlab documentation:
and for plotting dots with the plot function you can use
plot(A,B,'.')i.e.'.'is theplotstringyou want.For more information have a look here
Example
will output:
