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!