Am I seeing a bug In LiveScript Output?

1 次查看(过去 30 天)
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?

采纳的回答

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