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!