Technical query on surf command
1 次查看(过去 30 天)
显示 更早的评论
Hi
I have a technical question regarding surf command.
I wanted to know if I create a mesh grid having x & y values and create a function for getting z values for each of the points.
Then I have z values for each (x,y) . However when I plot, I see a single grid (square/rectangle) in the mesh represents one color but we have 4 values of z corresponding to one grid.
How does matlab know which value to use for getting the exact color value or does it do an average of z values and gets the corresponding color value.
Thanks
Sukrit
0 个评论
回答(1 个)
Walter Roberson
2020-8-18
MATLAB chooses the color according to bilinear interpolation at the center of the face, using the information from the four corners of the face.
If you would prefer that interpolation not be done, that each input location corresponds to a color, then you should use texturemapping . The easiest way to do this kind of texture mapping is to use warp() instead of surf()
2 个评论
Steven Lord
2020-8-18
The description of the FaceColor, CData, and CDataMapping properties of a surface may be of interest.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!