How can I make a meshgrid of this image? I am trying to create a bathymetry with matrix.

Risposte (1)

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

Categorie

Tag

Richiesto:

il 12 Dic 2019

Risposto:

il 18 Dic 2019

Community Treasure Hunt

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

Start Hunting!

Translated by