Borrar filtros
Borrar filtros

App Designer Multiple Plots

30 visualizaciones (últimos 30 días)
April Bryan
April Bryan el 8 de Sept. de 2017
Comentada: April Bryan el 11 de Sept. de 2017
I am trying to plot a bar graph and a line graph on the same axes in app designer. I know that there is an "add" property. However, I am not sure how to use it.
Please help.
Thanks
April

Respuestas (1)

Elizabeth Reese
Elizabeth Reese el 11 de Sept. de 2017
Hi April,
You can use the hold command as you usually would to plot multiple graphs on an axes. You will need to call hold with the axes as an input. Say I had an axes in my app called UIAxes, then the code for overlaying a line and bar graph could look like the following:
y = [75 91 105 123.5 131 150 179 203 226 249 281.5];
bar(app.UIAxes,y);
hold(app.UIAxes);
plot(app.UIAxes,y,'*');
  1 comentario
April Bryan
April Bryan el 11 de Sept. de 2017
Hi Liz,
Thank you very much. The solution works well!
Regards,
April

Iniciar sesión para comentar.

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by