Plotting problem & Does the matlab can plot raster map?
3 次查看(过去 30 天)
显示 更早的评论
I have coordinates (X,Y) and its corresponding value (Z), How to visualize them and distinguish with different color for each point? Just like a raster file that every pixel has a value in it.
Thank you very much!
2 个评论
采纳的回答
KSSV
2019-6-4
编辑:KSSV
2019-6-4
Let X,Y,Z be your m*3 data.
x = unique(X) ; nx = length(x) ;
y = unique(X) ; ny = length(y) ;
X = reshape(X,nx,ny) ;
Y = reshape(Y,nx,ny) ;
Z = reshape(Z,nx,ny) ;
figure
pcolor(X,Y,Z)
shading interp
figure
surf(X,Y,Z)
shading interp
9 个评论
KSSV
2019-6-4
YOu have only two values in Z 0 and 1. You can plot them like below:
scatter(X(Z==1),Y(Z==1),'s','filled','r')
hold on
scatter(X(Z==0),Y(Z==0),'s','filled','b')
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Mapping Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!