Filter löschen
Filter löschen

Multiple Image like subplot

1 Ansicht (letzte 30 Tage)
Hosain Shahab Safa
Hosain Shahab Safa am 17 Feb. 2021
Beantwortet: Walter Roberson am 17 Feb. 2021
Hello
plot ====>>> subplot
imagesc==>> ?????
thanks

Antworten (2)

Adib Yusof
Adib Yusof am 17 Feb. 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 am 17 Feb. 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.

Tags

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by