Data Visualisation Basic with x-y coordinate and z data value
2 次查看(过去 30 天)
显示 更早的评论
Hello, suppose I have x-y coordinate and z value as the grades of the points. How can I visualize my data in 2-D colormap ? (I want to show x-y cordinate and different colors for different values at every points inside the image).
Please help.
0 个评论
回答(1 个)
Star Strider
2019-8-28
It depends what ‘x’, ‘y’ and ‘z’ are, and what you want.
If they are vectors and have sufficient density, this may work:
figure
scatter3(x, y, z, [], z, 'filled')
view(0, 90)
If they are vectors and are gridded, just use reshape to form them into matrices, then use the contour function. If they are not gridded, first use griddata to form them into matrices, then use contour.
It all depends on what you are starting with, and what you want as the end result.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Contour Plots 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!