rainflow function usage in app designer causes the figure window open

3 ビュー (過去 30 日間)
farzad
farzad 2020 年 4 月 2 日
コメント済み: farzad 2020 年 5 月 12 日
Hi All
I have to use rainflow function in my application. but it causes the figure window open despite I have turned off the visibility. is there any solution to that ?
f = figure('visible', 'off');
TT = timetable(tt,B);
rainflow(TT);
title(strcat(filename,'Histogram y'));
saveas(gcf,strcat(filename,'Histogram-y.png'));

採用された回答

Walter Roberson
Walter Roberson 2020 年 4 月 2 日
When you do not specify output arguments for rainflow() then it calls a function to plot the results. Unfortunately there are a couple of careless lines in the plotting function that bring the resulting axes into focus, and that results in the plot becoming visible.
The work around is to request the output variables from rainflow() and do the plotting yourself.
I will file a bug report about the problem with accidental focus.
  21 件のコメント
Walter Roberson
Walter Roberson 2020 年 5 月 12 日
axes(p1);
axis('tight');
should become
axis(p1, 'tight');
farzad
farzad 2020 年 5 月 12 日
I did this. Now I have one single figure open and its content changes , given that I have to make several rainflow figures during the run. but I will have this one figure opend.
even If I do
f = figure('visible','off');
It will create another figure, and the ONE figure will remain open

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

その他の回答 (0 件)

カテゴリ

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