Clear Filters
Clear Filters

symbolic variables in transfer functions

178 views (last 30 days)
linofex
linofex on 21 Dec 2015
Edited: Walter Roberson on 24 Nov 2023
Hi all. I have a question about symbolic variables and
tf
function. I try to explain better: The questions of my exam are like: find the "k" where the system is BIBO of this transfer function. So, with Matlab I try to write the transfer function (I have few blocks)..
syms k; %where k is a real constant
s = tf('s'); % where s is the variable in the Laplace domain
G = 1/(2s+ k ); %should be the transfer function of one block that depends of k
but I get this errors:
Error using sym>tomupad (line 997)
Conversion to 'sym' from 'tf' is not possible.
Error in sym (line 139)
S.s = tomupad(x,'');
Error in sym/privResolveArgs (line 801)
argout{k} = sym(arg);
Error in sym/privBinaryOp (line 819)
args = privResolveArgs(A, B);
Error in * (line 216)
X = privBinaryOp(A, B, 'symobj::mtimes');
So, is make variables like z?
I hope that I have expressed well my problem.
  3 Comments
Jeremy Shore
Jeremy Shore on 27 Jul 2021
Although that is a good idea and often works well, Renato, some simulations can iterate for hours, even with optimization parameters set in the Response Optimizer tool with simulink, so symbolically solving for functions that can be of great complexity, including feed-foward control functions for systems engineering, would be very beneficial and helpful to not just get numerical solutions for parameters (that often do not work well and converge on local minima), but instead solve for tuning parameters and and other complex entities (like feed-forward functions) analytically. If I understand Linofex correctly, then I, too, am looking for a way to let MATLAb do block-diagram algebra symbolically so that I do not have to do it, which is quite error prone, expecially since it is me doing it.
Walter Roberson
Walter Roberson on 27 Jul 2021
Edited: Walter Roberson on 24 Nov 2023
It would indeed be useful if Mathworks could support more extensive symbolic control routines.

Sign in to comment.

Answers (2)

Walter Roberson
Walter Roberson on 21 Dec 2015
In
s = tf('s'); % where s is the variable in the Laplace domain
you are creating a transfer function, not a variable.
In
G = 1/(2*s+ k ); %should be the transfer function of one block that depends of k
you are trying to multiply the transfer function by something, but transfer functions cannot be multiplied or added.
Perhaps you want
syms k
G = tf(1,[2 k])
I do not know how far you will be able to get with that, but it should avoid the problem of multiplying transfer functions.
  2 Comments
Walter Roberson
Walter Roberson on 7 Jun 2020
My response back then was incorrect: you can add tf and you can multiply them by scalars or tf.
However you cannot combine tf with Symbolic. In a later post I went into detail about was possible.

Sign in to comment.


linofex
linofex on 21 Dec 2015
I think that I made confusion. Rereading the help tf I see that tf('s') makes a transfer function, but my professor wrote this:
% Transfer function TC
s = tf('s');
G = (s+1)/(s^2+s+1); % definition of tf
G = tf([1 1],[1 1 1]); % other definition of G
So why the first
s = tf('s');
Thank you about the problem with the
k (solved)

Tags

Community Treasure Hunt

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

Start Hunting!