필터 지우기
필터 지우기

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 CenterFile 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