목차
1. 서론
2. 배경이론
(1) sinc함수
(2) Gibbs현상
3. 실습과정
(1) 실습과정
4. 결론
5. 부록
(1) Program Source
2. 배경이론
(1) sinc함수
(2) Gibbs현상
3. 실습과정
(1) 실습과정
4. 결론
5. 부록
(1) Program Source
본문내용
수록 불연속 값 근처의 불일치 현상은 줄어들긴 하지만 완전히 없어지지는 않음을 확인할 수 있다. 즉, 유한한 주파수 대역에서는 Gibbs현상이 동반됨을
알 수 있다.
5. 부록
(1) Program Source
t=-3:0.01:3;
y=0;
for n=-5:1:5;
y=y+(2/j*n*pi)*exp(j*n*pi*t);
end
plot(t,y);
grid on
title(\'Gibbs phenomenon\');
t=-2:0.01:2;
y=0;
for k=-10:1:10;
y=y+sinc(1/3*k)*cos(pi/3*k*t);
end
plot(t,y);
grid on
title(\'Gibbs phenomenon\');
N=5
N=10
t=-2:0.01:2;
y=0;
for k=-20:1:20;
y=y+sinc(1/3*k)*cos(pi/3*k*t);
end
plot(t,y);
grid on
title(\'Gibbs phenomenon\');
t=-2:0.01:2;
y=0;
for k=-100:1:100;
y=y+sinc(1/3*k)*cos(pi/3*k*t);
end
plot(t,y);
grid on
title(\'Gibbs phenomenon\');
N=20
N=100
알 수 있다.
5. 부록
(1) Program Source
t=-3:0.01:3;
y=0;
for n=-5:1:5;
y=y+(2/j*n*pi)*exp(j*n*pi*t);
end
plot(t,y);
grid on
title(\'Gibbs phenomenon\');
t=-2:0.01:2;
y=0;
for k=-10:1:10;
y=y+sinc(1/3*k)*cos(pi/3*k*t);
end
plot(t,y);
grid on
title(\'Gibbs phenomenon\');
N=5
N=10
t=-2:0.01:2;
y=0;
for k=-20:1:20;
y=y+sinc(1/3*k)*cos(pi/3*k*t);
end
plot(t,y);
grid on
title(\'Gibbs phenomenon\');
t=-2:0.01:2;
y=0;
for k=-100:1:100;
y=y+sinc(1/3*k)*cos(pi/3*k*t);
end
plot(t,y);
grid on
title(\'Gibbs phenomenon\');
N=20
N=100