
Why is my figure different when I open it in the Figure Window, compared to that displayed in the results pane of Live Script?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi,
I set up the plot as I wanted it in Live Script, but when I press the "Open in Figure Window" arrow for said figure it opens, but some ylines are missing. How do I resolve this so I can save the figure as a .fig file?
Thanks! :)
Screenshots and code included below:
Code and Figure as seen in Live Script:

Figures side by side:
%20and%20Figure%20from%20Live%20Script%20on%20right.jpeg)
댓글 수: 2
Cris LaPierre
2024년 4월 29일
I am not able to duplicate the issue. What version of MATLAB are you working in? Is there any code in a previous section we should know about?

Walter Roberson
2024년 4월 29일
I seem to recall a bug about ylines not displaying properly... but that was several releases ago and affected only a single release.
답변 (2개)
Voss
2024년 4월 29일
Try saving the uifigure directly at the end of your code:
fig_filename = 'output.fig'; % change this to what/where the .fig file should be called/located
saveas(F6,fig_filename)
댓글 수: 1
Cris LaPierre
2024년 4월 30일
I can reproduce in R2023b update 6 but not in R2024a.
However, if I save the figure programmatically, the ylines are preserved.
saveas(F6,'myplot.fig')
참고 항목
카테고리
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!