Am I seeing a bug In LiveScript Output?

조회 수: 1 (최근 30일)
Adam Kingsley
Adam Kingsley 2020년 10월 26일
댓글: Cris LaPierre 2020년 10월 26일
I get an extra set of incorrect axes when viewing a stackedplot figure in the LiveScript output.
I added variable names so that the correct set of axes are moved and you can see the two sets.
tbl=timetable([0;1],[1;1],[0;0],[1;0],'SampleRate',0.5);
tbl.Properties.VariableNames={'A somewhat longer name','shorter','short','shortest'};
stackedplot(tbl)
Results in the ouput of the LiveScript:
Results from using the command window:
Is this a bug or do I have some setting or option improperly set?
  댓글 수: 1
Adam Kingsley
Adam Kingsley 2020년 10월 26일
This occurs even if I declare a vector/matrix instead of a timetable.

댓글을 달려면 로그인하십시오.

채택된 답변

Cris LaPierre
Cris LaPierre 2020년 10월 26일
When I run your code in my computer, the resulting figure looks the same in a live script and the command window. I can also run it here using 20b.
tbl=timetable([0;1],[1;1],[0;0],[1;0],'SampleRate',0.5);
tbl.Properties.VariableNames={'A somewhat longer name','shorter','short','shortest'};
stackedplot(tbl)
  댓글 수: 5
Adam Kingsley
Adam Kingsley 2020년 10월 26일
Yeah, I should have restarted Matlab before posting the question. That would have worked too, I'm sure. Thank you again.
Cris LaPierre
Cris LaPierre 2020년 10월 26일
It might depend what else you have in your live script. If you had another figure before, it will reuse the same axes, which could cause the problem. Using the figure command forces it to create a brand new figure for the plot, preventing any carry-over issues that might result from reusing an existing figure.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by