フィルターのクリア

How can I plot diagram in MATLAB

1 回表示 (過去 30 日間)
Yeasir Mohammad Akib
Yeasir Mohammad Akib 2015 年 12 月 15 日
コメント済み: Yeasir Mohammad Akib 2015 年 12 月 16 日
How can I plot this types of diagram in MATLAB?
  2 件のコメント
Stephen23
Stephen23 2015 年 12 月 15 日
You do not seem to have uploaded the image correctly. Can you try it again please.
Yeasir Mohammad Akib
Yeasir Mohammad Akib 2015 年 12 月 15 日

サインインしてコメントする。

採用された回答

Mike Garrity
Mike Garrity 2015 年 12 月 15 日
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 件のコメント
Yeasir Mohammad Akib
Yeasir Mohammad Akib 2015 年 12 月 16 日
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 件)

カテゴリ

Help Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by