how to fit the .emf image space for a subplot?
2 views (last 30 days)
Show older comments
Hi all!
I have a question on the image space of a subplot(4 rows, 3 colums).
When i try to save the subplot(4 rows, 3 colums) as emf I have the problem that only a subplot(3 rows, 2 colums) is saved correctly. The third colum is cut and the fourth row does not appear. Can I enlarge the image space somehow so that all the rows and colums can be saved correctly? Can one additionally somehow save the emf so that the image fits the DinA4 format?
Thank you very much in advance!!
Darax
1 Comment
Kiran
on 9 Feb 2016
Hi,
I tried to reproduce this at my end using following script.
if true
% code
figure
for i=1:12
subplot(4,3,i)
plot(1:i)
title('Subplot 4: sin(8x)')
end
end
end
But, the issue is not reproduced. Can you share code snippet or alternatively, you can reach out MathWorks Technical support at support@mathworks.com
Answers (0)
See Also
Categories
Find more on Subplots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!