matlab画多个函数,Matlab中⼀个figure函数画多个⼦图和多个
figure函数。。。
此博⽂仅为个⼈学习笔记,仅供个⼈使⽤。
1.如何在⼀个figure⾥⾯画多个⼦图。
%subplot(x,y,n)x表⽰显⽰的⾏数,y表⽰列数,n表⽰第⼏幅图⽚
figure,subplot(221),imhist(P),title('左部区域直⽅图'); % define figure
subplot(222),imhist(U),title('左部区域直⽅图');
subplot(223),imhist(D),title('中部区域直⽅图');用subplot函数
subplot(224),imhist(T),title('右部区域直⽅图');
%2⾏4列的图⽚,⼀共8幅图。
figure,subplot(241),imshow(P),title('左部区域原始图像');%321是3⾏2列矩阵第1幅图
subplot(242),imshow(L0),title('左部区域分割图像');
subplot(243),imshow(U),title('左部区域原始图像');%321是3⾏2列矩阵第1幅图
subplot(244),imshow(L1),title('左部区域分割图像');
subplot(245),imshow(D),title('中部区域原始图像');
subplot(246),imshow(L2),title('中部区域分割图像');
subplot(247),imshow(T),title('右部区域分割图像');
subplot(248),imshow(L3),title('右部区域分割图像');
2.多个figure画多个⼦图figure(1); % 第⼀个⼦图plot(...);
figure(2); % 第⼆个⼦图plot(...);
figure(3);
plot(...);
figure(4);
plot(...);
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论