Check for missing argument or incorrect argument data type in call to function 'bode'
조회 수: 2 (최근 30일)
이전 댓글 표시
I dont know why is not working
댓글 수: 2
Athrey Ranjith Krishnanunni
2021년 1월 17일
Because that's not a valid syntax. Type
doc bode
in the command line to see the documentation and determine what the valid syntax is.
답변 (1개)
Divija Aleti
2021년 1월 20일
Hi Alejandro,
As both ARK and Adam mentioned, do check out the documentation for 'bode' function to know the valid syntax.
As an example, have a look at the code and its output given below:
A1 = [1000];
B1 = [1 1000];
G1 = tf(A1,B1);
bode(G1)
Output:
Regards,
Divija
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with Control System Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!