Multiple Image like subplot
1 回表示 (過去 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!