Color ranging from blue, green, and red using fill
1 次查看(过去 30 天)
显示 更早的评论
Hey everybody,
Does anyone know how to plot colors ranging from blue (-1) - green (0) - red (+1)? I'm currently only able to blot completely blue or red using the fill function with 'r' or 'b'.
Best,
Eric
0 个评论
回答(2 个)
Walter Roberson
2015-12-22
fill() creates a patch so it is limited to what a patch can do. For that see http://www.mathworks.com/help/matlab/visualize/specifying-patch-coloring.html
Note that to do the interpolated coloring for faces you need multiple faces, whereas fill() only creates one face. You will be wanting to create a triangular mesh or quad mesh to color more closely.
Or you could create an image of the colors you want and apply the image as a texture map over a surface object created with surf(). You might want to use this File Exchange contribution
0 个评论
Image Analyst
2015-12-22
Not sure what you want, but see if either of the two attached demos does it.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Green 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!