how to plot controlchart function into axes GUI

1 vue (au cours des 30 derniers jours)
Safwana Razak
Safwana Razak le 13 Sep 2018
Commenté : Safwana Razak le 14 Sep 2018
axes(handles.axes1);
p = controlchart(re,'charttype','s');
xlabel('Airflow (ft^3/min)')
ylabel('Frequency (counts)')
title('Airflow Histogram')
legend('off')
when i run guide new window open. i want the graph inside my axes in GUI
thanks
  1 commentaire
Jan
Jan le 13 Sep 2018
Today I've used the "{} Code" button to format your code.

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 13 Sep 2018
Modifié(e) : Jan le 13 Sep 2018
See: doc controlchart (link)
parent — The handle of the axes to receive the control chart plot.
Default is to create axes in a new figure. Not permitted if there are
multiple chart types.
So try to replace
axes(handles.axes1);
p = controlchart(re,'charttype','s');
by
p = controlchart(re,'charttype','s', 'parent', handles.axes1);

Plus de réponses (0)

Catégories

En savoir plus sur Graphics Object Properties 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