Sie sind auf Seite 1von 5

//%e^(4*t)

//t domain
clf;
t=0:0.0001:10;
f=%e^(4*t);
s=poly(0,'s');
D=s-4;
N=1;
S1=syslin('c',N,D);
plzr(S1)
plot(t,f);
xlabel("TIME");
ylabel("AMPLITUDE");
title("F(t)=%e^(4*t)");

//%e^(4*t)
//s domain
clf;
t=0:0.0001:10;
f=%e^(4*t);
s=poly(0,'s');
D=s-4;
N=1;
S1=syslin('c',N,D);
plzr(S1)
plot(s,f);
xlabel("TIME");
ylabel("AMPLITUDE");
title("F(t)=%e^(4*t)");

//cos*(.5*t)
//T-DOMAIN
clf;
t=0:0.0001:10;
f=cos*(.5*t);
s=poly(0,'s');
D=s^2+(.25^2);
N=s;
S1=syslin('d',N,D);
xlabel("TIME");
ylabel("AMPLITUDE");
title("F(t)=cos*(.5*t)");
plot(t,f);
plzr(S1);
//cos*(.5*t)
//s-domain
clf;
t=0:0.0001:10;
f=cos*(.5*t);
s=poly(0,'s');
D=s^2+(.25^2);
N=s;
S1=syslin('d',N,D);
xlabel("TIME");
ylabel("AMPLITUDE");
title("F(t)=cos*(.5*t)");
plot(s,f);
plzr(S1);

//2*(t^2)*-%e^(-t)
//t-domain
clf;
t=0:0.0001:10;
f=2*(t^2)*-%e^(-t);

s=poly(0,'s');
D=(s^3)*(s+1);
N=(4s+4)-(s^3);
S1=syslin('d',N,D);
plzr(S1)
xlabel("Time");
ylabel("Amplitude");
title("F(t)=2*(t^2)*-%e^(-t)");
plot(t,f);

//2*(t^2)*-%e^(-t)
//s-domain
clf;
t=0:0.0001:10;
f=2*(t^2)*-%e^(-t);
s=poly(0,'s');
D=(s^3)*(s+1);
N=(4s+4)-(s^3);
S1=syslin('d',N,D);
plzr(S1)
xlabel("Time");
ylabel("Amplitude");
title("F(t)=2*(t^2)*-%e^(-t)");
plot(s,f);

increasing
non- oscillating

//(t^2).*sin(t)
//t-domain
t=0:0.0001:10;

f=(t^2).*sin(t);
s=poly(0,'s');
N=(8*s^4)+(6*s^2)-(4*s)-2;
D=((s^2)+1)^4;
S1=syslin('c',N,D);
plzr(S1)
plot(t,f);
xlabel("TIME");
ylabel("AMPLITUDE");
title("F(t)=(t^2).*sin(t)");

//(t^2).*sin(t)
//s-domain
t=0:0.0001:10;
f=(t^2).*sin(t);
s=poly(0,'s');
N=(8*s^4)+(6*s^2)(4*s)-2;
D=((s^2)+1)^4;
S1=syslin('c',N,D);
plzr(S1)
plot(s,f);
xlabel("TIME");
ylabel("AMPLITUDE");
title("F(t)=(t^2).*sin(t)");
**increasing
oscillating

//-8*cos(2*t)

//t-domain
t=0:0.0001:10;
f=-8*cos(2*t);
s=poly(0,'s');
N=-8*s;
D=(s^2)+4;
S1=syslin('c',N,D);
plzr(S1)
plot(t,f);
xlabel("TIME");
ylabel("AMPLITUDE");
title("F(t)=-8*cos(2*t)");
//-8*cos(2*t)
//s-domain
t=0:0.0001:10;
f=-8*cos(2*t);
s=poly(0,'s');
N=-8*s;
D=(s^2)+4;
S1=syslin('c',N,D);
plzr(S1)
plot(s,f);
xlabel("TIME");
ylabel("AMPLITUDE");
title("F(t)=-8*cos(2*t)");
CONSTANT

Das könnte Ihnen auch gefallen