How can I make a meshgrid of this image? I am trying to create a bathymetry with matrix.
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How can I make a meshgrid of this image? I am trying to create a bathymetry with matrix.

0 Kommentare
Antworten (1)
Sourav Bairagya
am 18 Dez. 2019
You can do that following this way. Assume the image is I.
[X,Y]=meshgrid(1:size(I,2), 1:size(I,1));
mesh(X,Y,I) %display mesh plot
0 Kommentare
Siehe auch
Kategorien
Mehr zu Read, Write, and Modify Image finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!