Effacer les filtres
Effacer les filtres

rainflow function usage in app designer causes the figure window open

2 vues (au cours des 30 derniers jours)
farzad
farzad le 2 Avr 2020
Commenté : farzad le 12 Mai 2020
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'));

Réponse acceptée

Walter Roberson
Walter Roberson le 2 Avr 2020
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 commentaires
Walter Roberson
Walter Roberson le 12 Mai 2020
axes(p1);
axis('tight');
should become
axis(p1, 'tight');
farzad
farzad le 12 Mai 2020
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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Graphics Performance dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by