Info
此问题已关闭。 请重新打开它进行编辑或回答。
what codes are needed to make the surface produced by surf have a unified color?
1 次查看(过去 30 天)
显示 更早的评论
Hi everyone,
I am using "surf" to produce a 3D surface. However, the color of it is changing with the value of Z in the surface.
How can I make the color of the surface to be unified to only one kind?
THX very much!
Cheers
1 个评论
Geoff Hayes
2014-6-26
Do you mean that you only want the same colour for every point on the 3D surface? If so, after you have called surf3 just change the colormap to a single colour (see http://www.mathworks.com/help/matlab/ref/surf.html for a two colour example):
colormap([1 0 0]);
would change the surface to red.
回答(0 个)
此问题已关闭。
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!