フィルターのクリア

What happened to the figure palette plot browser for 2024B?

61 ビュー (過去 30 日間)
Farley Postgate
Farley Postgate 2024 年 7 月 31 日 16:55
コメント済み: Farley Postgate 2024 年 8 月 2 日 0:46
What happened to the figure palette plot browser for 2024B? In 2023 version and before it, I can type figure then with the figure palette I can add an axes and then add data to the plot for quickly looking at data in a mat file. Is this all gone, how is it replaced?

回答 (1 件)

Piyush Kumar
Piyush Kumar 2024 年 7 月 31 日 17:51
編集済み: Piyush Kumar 2024 年 7 月 31 日 18:04
".........type figure then with the figure palette I can add an axes and then add data to the plot for quickly looking at data in a mat file........." - I tried implementing this by following code -
figure;
axes;
data = load('<file-name>.mat');
plot(data.x,data.y);
I tried the above code in both R2024b and R2023a. It gave same output for me.
Are you getting different outputs?
One thing I have found is that use of figurepalette and plotbrowser functions is not recommended in recent versions of MATLAB. Use plotedit and Property Inspector instead.
figure;
data = load('<file-name>.mat');
plot(data.x,data.y);
plotedit on;
inspect(gcf);
The documentation of plotedit and Property Inspector has some examples. You can go through them to learn more.
  4 件のコメント
Walter Roberson
Walter Roberson 2024 年 7 月 31 日 22:38
R2024b is in pre-release. You should be sending technical feedback to Mathworks about the feature being broken.
Farley Postgate
Farley Postgate 2024 年 8 月 2 日 0:46
I'll give it a try.. I suppose you are right.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by