Plotting data with meshgrid
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 ge开发者_C百科t rid of the "meshy" look of the image?
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);
I don't know if it works for meshgrid, but if you use surf, you can specify
shading interp
to get rid of the 'meshy' look.
精彩评论