How to substitute tf('s') variables into a symbolic expression

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

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).
My code has nothing to do with converting ‘s’ (continuous) domain functions to ‘z’ (discrete) domain functions. The z variable here is just a variable, you can simply use another symbol if you want to.
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.
syms y z
This is the syntax I declared in my code. Since z is not a transfer function variable, I think there would be no problem here.

Sign in to comment.

Answers (2)

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

Thank you, the mistake has been corrected.
I am trying to calculate the H-infinity norm of a linear neutral distributed delay system. I understand that tf class variable cannot mixed with symbolic variables. However, the dilemma here converges to the term int( A4*exp(y*z), y, -r,0). As you have rightly pointed out, this integration cannot be calculated within the environment of tf class variable, and it would be unrealistic sometime to calculate it via symbolic variables and then write then down manually via tf variables. So that is the reason I asked if there is anyway to transfer a symbolic expression into a tf expression.

Sign in to comment.

Categories

Asked:

on 20 May 2017

Answered:

on 23 May 2017

Community Treasure Hunt

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

Start Hunting!