symbolic variables in transfer functions
295 次查看(过去 30 天)
显示 更早的评论
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 个评论
Jeremy Shore
2021-7-27
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
2021-7-27
编辑:Walter Roberson
2023-11-24
I discussed the facilities actually available in https://www.mathworks.com/matlabcentral/answers/305339-how-to-create-a-transfer-function-with-gain-k#comment_395202
It would indeed be useful if Mathworks could support more extensive symbolic control routines.
回答(2 个)
Walter Roberson
2015-12-21
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 个评论
Walter Roberson
2020-6-7
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.
Walter Roberson
2021-7-27
https://www.mathworks.com/matlabcentral/answers/305339-how-to-create-a-transfer-function-with-gain-k#comment_395202 is the extended discussion.
My initial response here was not correct.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!