Am I seeing a bug In LiveScript Output?

4 ビュー (過去 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 Center および File ExchangeGraphics Object Programming についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by