Borrar filtros
Borrar filtros

How can I plot diagram in MATLAB

1 visualización (últimos 30 días)
Yeasir Mohammad Akib
Yeasir Mohammad Akib el 15 de Dic. de 2015
Comentada: Yeasir Mohammad Akib el 16 de Dic. de 2015
How can I plot this types of diagram in MATLAB?
  2 comentarios
Stephen23
Stephen23 el 15 de Dic. de 2015
You do not seem to have uploaded the image correctly. Can you try it again please.
Yeasir Mohammad Akib
Yeasir Mohammad Akib el 15 de Dic. de 2015

Iniciar sesión para comentar.

Respuesta aceptada

Mike Garrity
Mike Garrity el 15 de Dic. de 2015
Here's a starting point.
for i=1:3
subplot(3,1,i)
plot(measured(i,:),'k')
hold on
plot(modeled(i,:),'k:')
xlabel('Samples')
ylabel('DO(mgL^{-1})')
legend('Measured','Modeled')
end
  1 comentario
Yeasir Mohammad Akib
Yeasir Mohammad Akib el 16 de Dic. de 2015
Thanks Mike, I have another question, can I use this type of code to generate plot like that in ANN toolbox? That means I want to plot the modelled DO measured by Neural net.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Deep Learning Toolbox 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!

Translated by