I want to make multiple title using one subplot, How can I do it?
1 次查看(过去 30 天)
显示 更早的评论
I want titles above each individual image
for i = 1 : 20
I = imread(my gallery folder images contain 20 images);
subplot(5,5,i),imshow(I,[]);
title('i');
end
% here my problem I want to make different title, every image with a title, but when I write title('i') , all images appears in one figure with the same title i
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Read, Write, and Modify Image 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!