When you use meshgrid to plot data (using meshgrid itself not one of the other plotting functions), how do you change the color to grayscale or black and white? Also, how do you get rid of the "meshy" look of the image?
+1
A:
To change the colour to greyscale you can use:
colormap(gray);
As for the 'meshy' look, I'm not 100% sure what you mean; but I'm assuming whatever you've created is looking pixelated? If so, decrease your mesh spacing:
From
x = meshgrid(-25:25);
To
x = meshgrid(-25:0.5:25);
Geodesic
2010-05-07 07:53:51