Multiple Image like subplot
3 次查看(过去 30 天)
显示 更早的评论
Hello
plot ====>>> subplot
imagesc==>> ?????
thanks
0 个评论
回答(2 个)
Adib Yusof
2021-2-17
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(...)
0 个评论
Walter Roberson
2021-2-17
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!