problem with subs function

조회 수: 35 (최근 30일)
Robert
Robert 2016년 11월 30일
댓글: Walter Roberson 2021년 2월 3일
I use this command daily and sometimes it works and sometimes i get an error.
I am obviously not understanding the complexity of such a simple function
I have a simple symbolic function with two variables. I want to replace one of the variables with a numeric value. What is the issue here.
I have done this countless times with no problem now today its throwing a fit. of course s and k are already declared symbolic other wise open loop would not exists
openloop =
((10*s + 14)*(s + 10))/((10*k*s + s*(s + 1)*(s + 10))*(s + 5))
>> feedforward = subs(openloop,k,11.1)
Error using sym/subs>normalize (line 206) The sizes of the second and third arguments are inconsistent.
Error in sym/subs>mupadsubs (line 137) [X2,Y2,symX,symY] = normalize(X,Y); %#ok
Error in sym/subs (line 125) G = mupadsubs(F,X,Y);
  댓글 수: 1
Walter Roberson
Walter Roberson 2021년 2월 3일
of course s and k are already declared symbolic other wise open loop would not exists
Well, they were symbolic at the time that openloop was created, but they might not be symbolic now, or might have a different size.

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

답변 (4개)

Tamir Suliman
Tamir Suliman 2016년 12월 1일
try to add syms s and syms k then run the strings
or syms s k

bio lim
bio lim 2016년 12월 1일
I don't see any problems.
syms s k
openloop = ((10*s + 14)*(s + 10))/((10*k*s + s*(s + 1)*(s + 10))*(s + 5));
feedforward = subs(openloop,k,11.1);
The output is:
feedforward =
((10*s + 14)*(s + 10))/((111*s + s*(s + 1)*(s + 10))*(s + 5))

Walter Roberson
Walter Roberson 2016년 12월 1일
Is your k possibly a vector of symbols? If so then
feedforward = subs(openloop,k,11.1)
would need one replacement value for each variable in k
  댓글 수: 1
Karan Gill
Karan Gill 2016년 12월 1일
This is probably it. @Robert, did you read the error message?

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


Jes Bel
Jes Bel 2018년 7월 13일
After doing " syms s k " I copy pasted your code and worked fine for me.

카테고리

Help CenterFile Exchange에서 Conversion Between Symbolic and Numeric에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by