我在MATLAB中使用SUBPLOT功能显示8个图像。对图像的处理需要时间,我希望图像在生成时可以在子图中显示。
但是发生的情况是脚本在脚本完成后出现,而不是在执行期间出现。要做到这一点该怎么办?
以下是我如何使用子图调用。
subplot(2,4,1),subimage(I),title('image1');
//some processing
subplot(2,4,2),subimage(I),title('image2');
//some processing
subplot(2,4,3),subimage(I),title('image3');
//some processing
subplot(2,4,4),subimage(I),title('image4');
//some processing
subplot(2,4,5),subimage(I),title('image5');
//some processing
subplot(2,4,6),subimage(I),title('image6');
//some processing
subplot(2,4,7),subimage(I),title('image7');
//some processing
subplot(2,4,8),subimage(I),title('image8');
//subplot shows up now, why?