Check for missing argument or incorrect argument data type in call to function 'bode'
1 回表示 (過去 30 日間)
古いコメントを表示
I dont know why is not working![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/490275/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/490275/image.png)
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:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/494359/image.png)
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!