how to plot controlchart function into axes GUI
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Safwana Razak
el 13 de Sept. de 2018
Comentada: Safwana Razak
el 14 de Sept. de 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 comentario
Respuesta aceptada
Jan
el 13 de Sept. de 2018
Editada: Jan
el 13 de Sept. de 2018
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);
Más respuestas (0)
Ver también
Categorías
Más información sobre Graphics Object Properties en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!