How to separate figures in a published pdf
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi,
I've generated a load of code with multiple figures, and am looking to publish this code as a pdf with each figure displaying after the code that generated it. However, when I do publish, I see all the code (seperated by %) but all the figures appear together at the end.
How can I change this so the figures appear seperately?
Many thanks.
댓글 수: 0
답변 (1개)
Aniket
2025년 6월 11일
편집: Aniket
2025년 6월 11일
The output is displayed at the end of code in a published file by default. However, each section output is displayed at end of section.
Therefore, you can divide the code into sections using "%%" after a call to plot/figure is made.
%%
vect = [1 2 3 4];
plot(vect);
%%
vect2 = [5 4 3 2];
plot(vect2);
This ensures output figure is shown just after its code.
Hope this helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!