목차
각각의 신호와 시스템을 MATLAB 에 적용하여 설계
intro
Triangular wave
Growing exponential
Sine signal
Product of growing exponential
and sinusoidal
Convolution
outro
intro
Triangular wave
Growing exponential
Sine signal
Product of growing exponential
and sinusoidal
Convolution
outro
본문내용
>t=0:0.001:1;
>>tri=A*sawtooth(w0*t,W);
>>plot(t,tri)
2)capture
2. Growing exponential
-
1)commands
>>B=2;
>>r=1.2;
>>n=-10:10;
>>x=B*r.^n;
>>stem(n,x)
2)capture
3. Sine signal
-
1)commands
>>A=5;
>>w0=10*pi;
>>phi=pi/6;
>>t=0:.001:1;
>>sine=A*sin(w0*t+phi);
>>plot(t,sine)
2)capture
4. Product of the growing exponential and sinusoidal signal
-
1)commands
>>A=10;
>>w0=10*pi;
>>phi=0;
>>a=3;
>>t=0:.001:1;
>>expsin=A*sin(w0*t+phi).*exp(a*t);
>>plot(t,expsin)
2)capture
5. Convolution
-
1)commands
>>h=0.9*ones(1,11);
>>x=ones(1,14);
>>n=0:23;
>>y=conv(x,h);
>>stem(n,y);
2)capture
6.Outro
이제까지 대표적 신호에 대해 MATLAB을 활용하여 직접 실행시켜 확인해 보았으며, 이론적인 것들에 대해 직접 확인해 볼 수 있는 좋은 기회였다. 이와 같이 여러 종류의 신호와 시스템에 관련된 성질을 이해하면 각종 신호와 여러 가지 시스템을 설계하는데 많은 도움이 될 거 같으며 다음 프로젝트에서는 이 신호와 시스템을 가지고 더 전문적인 응용을 보이도록 하겠다.
>>tri=A*sawtooth(w0*t,W);
>>plot(t,tri)
2)capture
2. Growing exponential
-
1)commands
>>B=2;
>>r=1.2;
>>n=-10:10;
>>x=B*r.^n;
>>stem(n,x)
2)capture
3. Sine signal
-
1)commands
>>A=5;
>>w0=10*pi;
>>phi=pi/6;
>>t=0:.001:1;
>>sine=A*sin(w0*t+phi);
>>plot(t,sine)
2)capture
4. Product of the growing exponential and sinusoidal signal
-
1)commands
>>A=10;
>>w0=10*pi;
>>phi=0;
>>a=3;
>>t=0:.001:1;
>>expsin=A*sin(w0*t+phi).*exp(a*t);
>>plot(t,expsin)
2)capture
5. Convolution
-
1)commands
>>h=0.9*ones(1,11);
>>x=ones(1,14);
>>n=0:23;
>>y=conv(x,h);
>>stem(n,y);
2)capture
6.Outro
이제까지 대표적 신호에 대해 MATLAB을 활용하여 직접 실행시켜 확인해 보았으며, 이론적인 것들에 대해 직접 확인해 볼 수 있는 좋은 기회였다. 이와 같이 여러 종류의 신호와 시스템에 관련된 성질을 이해하면 각종 신호와 여러 가지 시스템을 설계하는데 많은 도움이 될 거 같으며 다음 프로젝트에서는 이 신호와 시스템을 가지고 더 전문적인 응용을 보이도록 하겠다.
소개글