목차
1. 푸리에 급수 n=1
2. 푸리에 급수 n=3
3. 푸리에 급수 n=7
4. 푸리에 급수 n=19
5. 푸리에 급수 n=79
2. 푸리에 급수 n=3
3. 푸리에 급수 n=7
4. 푸리에 급수 n=19
5. 푸리에 급수 n=79
본문내용
or k=-19:1:19;
y=y+5*sinc(1/2*k)*cos(pi/2*k*t);
end
x(t<0)=0;
x(t>0)=1;
x1=10*(t+1>=0);
x2=-10*(t-1>=0);
x=x1+x2;
figure
plot(t,y,'r');
hold on
plot(t,x);
title('푸리에급수 N=19');
grid on
5.N=79 일 때
t=-2:0.01:2;
y=0;
for k=-79:1:79;
y=y+5*sinc(1/2*k)*cos(pi/2*k*t);
end
x(t<0)=0;
x(t>0)=1;
x1=10*(t+1>=0);
x2=-10*(t-1>=0);
x=x1+x2;
figure
plot(t,y,'r');
hold on
plot(t,x);
title('푸리에급수 N=79');
grid on
y=y+5*sinc(1/2*k)*cos(pi/2*k*t);
end
x(t<0)=0;
x(t>0)=1;
x1=10*(t+1>=0);
x2=-10*(t-1>=0);
x=x1+x2;
figure
plot(t,y,'r');
hold on
plot(t,x);
title('푸리에급수 N=19');
grid on
5.N=79 일 때
t=-2:0.01:2;
y=0;
for k=-79:1:79;
y=y+5*sinc(1/2*k)*cos(pi/2*k*t);
end
x(t<0)=0;
x(t>0)=1;
x1=10*(t+1>=0);
x2=-10*(t-1>=0);
x=x1+x2;
figure
plot(t,y,'r');
hold on
plot(t,x);
title('푸리에급수 N=79');
grid on
추천자료
IIR LPF 설계를 이용한 합성된 라디오 신호의 분리방법 using MatLab
Digital Signal Processing using matlab ED2/Ingle,Proakis/2장 연습문제 solution
Digital Signal Processing using matlab ED2/Ingle,Proakis/3장 연습문제 solution
MATLAB을 이용한 ASK,FSK및 Voice와 Music 합성 프로젝트(소스포함)
PID제어기 이용한 DC모터 (Servo 모터) 위치 제어 (Matlab 이용)
매트랩 이용한 DSLR 렌즈 설계
Matlab을 활용한 편광설계!
신호및 시스템 LTI 시스템 매트랩 설계
매트랩 프로그매 (polynomial, interpolation, quad)
3상 PWM인버터 설계(Matlab 시뮬링크)
BLDC모터 설계(matlab 시뮬링크)
MATLAB)컬러와 질감을 이용한 얼굴인식 프로그램
MATLAB_레일레이페이딩_시뮬레이션
소개글