Multiple Image like subplot

3 visualizaciones (últimos 30 días)
Hosain Shahab Safa
Hosain Shahab Safa el 17 de Feb. de 2021
Respondida: Walter Roberson el 17 de Feb. de 2021
Hello
plot ====>>> subplot
imagesc==>> ?????
thanks

Respuestas (2)

Adib Yusof
Adib Yusof el 17 de Feb. de 2021
Hello,
You still can use subplot alongside with imagesc. Just call subplot first, and then call imagesc. Or even better, use the newer version of subplot called tiledlayout. Example:
tiledlayout(2, 1);
nexttile;
imagesc(...);
nexttile;
imagesc(...)

Walter Roberson
Walter Roberson el 17 de Feb. de 2021
See montage for one possible meaning of your question.
Also for image() and imagesc() and imshow() you can pass in x and y coordinates of the center of the lower left and upper-right pixels, in data coordinates, so you can put images wherever you need them in data units.

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by