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!