필터 지우기
필터 지우기

How to obtain Two bode plots on the same figure (overlapping)??

조회 수: 12 (최근 30일)
Janamejaya
Janamejaya 2012년 7월 30일
댓글: Patricia Darling 2016년 3월 1일
Dear All,
I want to plot an array of data (code1) and a bode plot (code2) on the same graph/plot. Though i am able to get the individual semilog graphs(when i individually run them), i have been unsuccessful in obtaining both the plots on a single graph.
I would be extremely grateful, if someone could help me out. Thanks.
code1 :
semilogx([10 100 200 300 400 500 600 700 800 900 1000 2000 3000 4000 5000 6000 7000 8000 9000 10000 ], [2 2.3 13.3 26.3 -6.46 -11.7 -15.6 -18.8 -20.9 -23.4 -25.2 -37.9 -44.8 -50 -53.9 -57 -59.6 -62 -64 -65 ]);
code2 :
num=[0 1];
den=[0.000000495 0.000033 1];
system1=tf(num,den);
bode(system1)
best wishes
janmay

답변 (1개)

venkat vasu
venkat vasu 2012년 7월 30일
편집: Walter Roberson 2012년 7월 30일
subplot(1,2,1);
plot(code1);
subplot(1,2,2);
plot(code2);
  댓글 수: 3
Janamejaya
Janamejaya 2012년 7월 30일
편집: Walter Roberson 2012년 7월 30일
I was able to solve the problem, a Prof. at my university helped me.
Here's the code.
semilogx([10 100 200 300 400 500 600 700 800 900 1000 2000 3000 4000 5000 6000 7000 8000 9000 10000 ], [2 2.3 13.3 26.3 -6.46 -11.7 -15.6 -18.8 -20.9 -23.4 -25.2 -37.9 -44.8 -50 -53.9 -57 -59.6 -62 -64 -65 ]);
hold on
num=[0 1];
den=[0.000000495 0.000033 1];
system1=tf(num,den);
bode(system1)
best wishes
janmay
Patricia Darling
Patricia Darling 2016년 3월 1일
This doesn't work, the bode overwrites the semilogx.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Plot Customization에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by