i am a beginner please help me to debug small error

조회 수: 1 (최근 30일)
MOHAMED IHSAN
MOHAMED IHSAN 2015년 1월 8일
댓글: Image Analyst 2015년 1월 8일
Nbp=[2827.4 0];
Dbp=[1 942.4 4712^2];
Wbp=[0:50:10000];
hbp=freqs(Nbp,Dbp,Wbp);
hbp_mag=abs(hbp);
hbp_phase=angle(hbp);
fbp=Wbp/(2*pi);
hbp_phase=hbp_phase*180/pi;
figure
plot(fbp,hbp_mag)
  댓글 수: 4
MOHAMED IHSAN
MOHAMED IHSAN 2015년 1월 8일
thanks a lot for me it still show error like too many argumennt i dont know y
Image Analyst
Image Analyst 2015년 1월 8일
MOHAMED, did you read my comment? I think you did not. If you don't want to, then at least read this: http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer so people can answer your question. Make it EASY for people to help you, not HARD!

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

채택된 답변

Aditya Jain
Aditya Jain 2015년 1월 8일
Nbp=[2827.4 0];
Dbp=[1 942.4 4712^2];
Wbp=[0:50:10000];
hbp=freqs(Nbp,Dbp,Wbp);
hbp_mag=abs(hbp);
hbp_phase=angle(hbp);
fbp=Wbp/(2*pi);
hbp_phase=hbp_phase*180/pi;
figure;
plot(fbp,hbp_mag)
The above code works fine for me

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by