Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1 つのプロジェクトで複数imshow()を使用することはできず、私のコードでは最後のimshow().
imshow()
n=10; a = magic(n); b=a/(n^2); imshow(a) imshow(b)
私の問題は何ですか?
imshow別の図またはサブ図でそれらを使用する必要があります。
imshow
使用する
figure;imshow(a); figure;imshow(b);
また
figure; subplot(1,2,1);imshow(a); subplot(1,2,2);imshow(b);