Converting x y coordinates to a 2D matrix

2 vues (au cours des 30 derniers jours)
Sowmya MR
Sowmya MR le 18 Jan 2018
Commenté : Jos (10584) le 18 Jan 2018
Hi,
I have two vectors: X and Y corresponding to an image. Now if i do plot(X,Y) i get a nice image plot but i want to convert X and Y to a 2D matrix. Can someone please help?
  1 commentaire
Jos (10584)
Jos (10584) le 18 Jan 2018
What does "corresponding to an image" means?
Can you give a small example of some artificial input and expected output?

Connectez-vous pour commenter.

Réponses (1)

KSSV
KSSV le 18 Jan 2018
x = unique(X) ;
y = unique(Y) ;
[X2d,Y2d] = meshgrid(x,y) ;

Catégories

En savoir plus sur Images dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by