How to plot in DIFFERENT COLORS
If you have hard time seeing some of the plots that you do in matlab on
the color workstations, you should probably change the colors.
To find out how to do that, you can type at the matlab prompt:
help plot
In short, color can be specified inside the plot command. You can type:
plot(x,y,'w')
to plot a white line. You can also use other colors -- they are all
listed in the plot help information.
|