output result of a transfer function and input

조회 수: 1 (최근 30일)
azam ghamari
azam ghamari 2018년 12월 26일
Hi guys ,
is every body know that why when I use u as input:
U=laplace(0.1*exp(2.44*t));
and G=(s^-6)/((s+5)*(s+6)*(s+7));
and Y=G*U
it gives me in inverse laplace of Y, this term exp(2.44)?;!
but when I write this G:(s-2.44)/((s+5)*(s+6)*(s+7));
with the same u,
I have h=ilaplace(H) as exp(-5*t)/20 - exp(-6*t)/10 + exp(-7*t)/20
it doesn't have 2.44 term. and it gives me error of this plot.
syms t
U=laplace(0.1*exp(2.44*t));
syms s
G=(s-2.44)/((s+5)*(s+6)*(s+7));
H=G*U;
h=ilaplace(H);
plot(t,h)

답변 (0개)

카테고리

Help CenterFile Exchange에서 Assumptions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by