"Too many input arguments" for basic operations on transfer functions
이전 댓글 표시
Hello,
I have a problem using the Control Model Toolbox that I never had before using Matlab R2019B.
Whenever I try to make some operations on transfer functions, I hace the same "Too many input arguments" problem.
For example :
>> s = tf('s');
>> s
s =
s
Continuous-time transfer function.
>> 2*s
Error using * (line 80)
Too many input arguments.
>> s+1
Error using + (line 63)
Too many input arguments.
>> s^2
ans =
s^2
Continuous-time transfer function.
>> tf(1,[1,1]) * tf(1,[1,2,1])
Error using * (line 80)
Too many input arguments.
As anyone ever met this problem ? My research hasn't led to any result.
Thanks
채택된 답변
추가 답변 (1개)
Steven Lord
2020년 7월 9일
Make sure you haven't written your own mtimes.m or times.m file that's taking precedence over the built-in mtimes or times function. [I believe the mtimes method for tf may call times when the inputs are scalar.] What do you see when you run these commands?
which -all mtimes
which -all times
댓글 수: 3
madhan ravi
2020년 7월 9일
편집: madhan ravi
2020년 7월 9일
Also for plus and tf
Léo Bellorget
2020년 7월 9일
편집: Léo Bellorget
2020년 7월 9일
Léo Bellorget
2020년 7월 9일
편집: Léo Bellorget
2020년 7월 9일
카테고리
도움말 센터 및 File Exchange에서 Dynamic System Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!