开发者

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜