transfer function multiplication and plotting

조회 수: 4 (최근 30일)
aaa
aaa 2012년 1월 25일
hi have some code that looks like
TF = tf(num,den,1/(60));
g1 = 10*TF;
f = iztrans(g1)
but when i do this, matlab returns
??? Undefined function or method 'iztrans' for input arguments of
type 'tf'.
is there a solution around this? can i make my transfer function not as a 1x1 tf and as a different format? this is very frustrating,
thanks for the helps.

답변 (1개)

Walter Roberson
Walter Roberson 2012년 1월 25일
iztrans() is from the Symbolic Toolbox, and takes a symbolic expression. It is the inverse of the symbolic ztrans()
I am not sure what you are wanting to do, but if you are wanting to get the numerator and denominator of the new system, then you would use
[num,den,Ts] = tfdata(TF)
Or perhaps you want to inv(TF) ?

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by