0

我不能imshow()在一个项目中使用多个,我的代码只能看到最后一个imshow()

n=10;
a = magic(n);
b=a/(n^2);
imshow(a)
imshow(b)

我的问题是什么?

4

1 回答 1

2

您应该将imshow它们放在单独的数字或子图中:

利用

figure;imshow(a);
figure;imshow(b);

或者

figure;
subplot(1,2,1);imshow(a);
subplot(1,2,2);imshow(b);
于 2014-10-12T15:21:24.117 回答