Plotting problem & Does the matlab can plot raster map?

2 views (last 30 days)
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 Comments
KSSV
KSSV on 4 Jun 2019
Edited: KSSV on 4 Jun 2019
It is not a raster data. These are scattered points.
ZC Song
ZC Song on 4 Jun 2019
So could you give me a hint that how to transfer those data to raster format?

Sign in to comment.

Accepted Answer

KSSV
KSSV on 4 Jun 2019
Edited: KSSV on 4 Jun 2019
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 Comments
KSSV
KSSV on 4 Jun 2019
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')

Sign in to comment.

More Answers (0)

Categories

Find more on Creating, Deleting, and Querying Graphics Objects in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!