How to substitute tf('s') variables into a symbolic expression
Show older comments
I am dealing with the following problem.
syms y z
r = 1; n = 3; A1 = rand(n); A2 = rand(n); A3 = rand(n); A4 = rand(n) + y*rand(n);
s = tf('s');
A = ( z*eye(n) - 1 - A2*exp(-r*z) - A3*z*exp(-r*z) - int( A4*exp(y*z), y, -r,0) )^(-1);
P = subs(A,z,s);
However, the subs function seems to be incompatible with symbolic variable z. On the other hand, the expression int( A4*exp(y*z), y, -r,0) cannot be handled via tf('s'), so I need to first apply a symbolic representation here.
Note that I here dealing with a delay system with a distributed delay, not just a simple LTI finite dimensional system.
4 Comments
Star Strider
on 20 May 2017
I can’t figure out what you’re doing, so I’m listing this as a Comment rather than an Answer.
First, you cannot mix Control system Toolbox ‘system’ objects and Symbolic Math Toolbox Objects.
Second, converting ‘s’ (continuous) domain functions to ‘z’ (discrete) domain functions is not as simple as swapping the variables. You have to use the c2d function to convert them, because this involves using a specific transform (usually the bilinear transform) to map the continuous imaginary axis to the discrete unit circle.
It is possible to derive the transfer function or system function in the Symbolic Math Toolbox and then use the coeffs and double functions to convert the coefficients to a double array to then present to the Control Systems Toolbox tf function (or similarly, the system matrices to present to the ss function).
Star Strider
on 20 May 2017
The ‘s’ and ‘z’ variables have specific meanings in the Toolboxes that deal with discrete and continuous transfer functions. It is not permitted to substitute other variables for them.
Qian Feng
on 20 May 2017
Edited: Walter Roberson
on 23 May 2017
Answers (2)
Walter Roberson
on 23 May 2017
1 vote
https://www.mathworks.com/matlabcentral/fileexchange/46982-mult-t has tf2sym and sym2tf
Sebastian K
on 22 May 2017
Hi Qian,
There are several issues with the code snippet you posted:
1. The correct syntax of the "subs" function is
subs(S,OLD,NEW)
In your case, you are calling the function as
P = subs(A,s,z);
which means that in the expression "A", you are trying to replace the variable "s" with "z". However currently there is no "s" in "A", but just "z" and "y". I believe you might be providing the variables "s" and "z" in the wrong order.
2. The bigger issue with this code snippet is that the "subs" function will not accept "s" as an argument in the first place. This is because "s" is not a symbolic or numeric variable, but rather it is a "TF" object. The "subs" function does not support this data type as an input argument.
I am not sure what your ultimate objective is, so I will not be able to offer very specific recommendations. However I believe you should try to change your approach on how you are modeling/representing your system.
For instance, are you trying to first create a symbolic expression using "syms" variables, and then convert it to a transfer function by substituting "s"? This will not be possible by simply using "subs" or any other built-in MATLAB function. However there might be some File Exchange submissions that would let you do this.
Your symbolic expression contains an integral. I believe it might not be possible for you to convert this to an s-domain transfer function object in any case, because integrals (even if they represent distributed delays) are not supported in "TF" objects.
If you are trying to do symbolic operations such as integration, you should probably just use symbolic variables and not try to convert it to a transfer function object. However if you are trying to do some analysis with your transfer function with distributed delays, I would recommend you try to model this system in Simulink and do the analysis there.
I hope this helps.
Sebastian
2 Comments
Qian Feng
on 22 May 2017
Categories
Find more on Symbolic Math Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!