How can I plot diagram in MATLAB

How can I plot this types of diagram in MATLAB?

2 个评论

You do not seem to have uploaded the image correctly. Can you try it again please.

请先登录,再进行评论。

 采纳的回答

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 个评论

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.

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Deep Learning Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by