오차 분포 2 댓글1개
[신호처리] | cemtool | 04-23 | 조회 10961
은 독립적이고 동일하게 분포한 임의의 신호로 [-1, 1] 구간에 균일하게 분포한다고 하자. B=2와 6비트일 때, 오차 분포를 구해보자.ex10_2.cemclear; close all; % Example parameters B = 2; N = 500000; xn = (2*rand(1,N)-1); % Quantization error analysi…
오차 분포 1
[신호처리] | cemtool | 04-23 | 조회 10401
로 둔다. 이 신호는 주기적이지 않고, 따라서 그 표본들은 무한 정밀도 표현을 사용하면 켤코 반복하지 않는다. 그러나 신호가 삼각함수의 특성을 가지므로 그 연속 포락선은 주기적이며, 표본들은 이 포락선의 기본 주기상에서 연속적으로 분포한다. B=2와 6비트일 때, 오차 분포를 구하라.ex10_1.cemclear; close all; % Example …
제 2형 체비셰프 대역저지 필터 설계
[신호처리] | cemtool | 04-23 | 조회 10452
다음 CEMTool코드에 주어진 사양을 갖는 제 2형 체비셰프 대역저지 필터를 설계해보자.ex8_30.cem/* Chapter 8: Example 8.30 Chebyshev-2 Bandstop Filter Design: Use of the CHEBY2 function */ /* Digital Filte…
타원형 대역통과 필터 설계
[신호처리] | cemtool | 04-23 | 조회 9772
다음의 CEMTool코드에 주어진 사양을 갖는 타원형 대역통과 필터를 설계해보자.ex8_29.cem/* Chapter 8: Example 8.29 Elliptic Bandpass Filter Design: Use of the ELLIP function */ /* Digital Fil…
제 1형 체비셰프 고역통과 필터 설계 댓글11개
[신호처리] | cemtool | 04-23 | 조회 13124
다음 사양을 갖는 제 1형 체비셰프 고역통과 필터를 설계해보자. ex8_28.cem/* Chapter 8: Example 8.28*/ /* Digital Filter Specifications:*/ /* Type: Chebyshev-I highpass */ ws = 0.4586*pi; …
제 1형 체비셰프 원형 필터를 사용한 고역통과 필터 설…
[신호처리] | cemtool | 04-23 | 조회 9997
제 1형 체비셰프 원형 필터를 사용하여, 다음의 사양을 만족하는 고역통과 필터를 설계해보자. ex8_27.cem/* Chapter 8: Example 8.27*/ /* Digital Highpass Filter Specifications: */ wp = 0.6*pi; /*…
저역통과 필터를 고역통과 필터로 변환 댓글1개
[신호처리] | cemtool | 04-23 | 조회 10503
zmapping함수를 사용하여 다음 사양의 저역통과 필터를 고역통과 필터로 변환해보자. ex8_26.cem/* Chapter 8: Example 8.26*/ /* Digital Lowpass Filter Specifications: */ wplp = 0.2*pi; /* d…
디지털 타원형 저역통과 필터 설계
[신호처리] | cemtool | 04-23 | 조회 10850
디지털 타원형 저역통과 필터 설계 ex8_24.cem/* Chapter 8: Example 8.24 Elliptic Lowpass Filter Design: Use of the ELLIP function */ /* Digital Filter Specifications: */ wp = …
디지털 제 2형 체비셰프 저역통과 필터 설계 댓글16개
[신호처리] | cemtool | 04-23 | 조회 16089
디지털 제2형 체비셰프 저역통과 필터 설계 ex8_23.cem/* Chapter 8: Example 8.23 Butterworth Lowpass Filter Design: Use of the CHEBY2 function */ % Digital Filter Specifications: /* Dig…
디지털 제 1형 체비셰프 저역통과 필터 설계
[신호처리] | cemtool | 04-23 | 조회 11276
디지털 제 1형 체비셰프 저역통과 필터 설계 ex8_22.cem/* Chapter 8: Example 8.22 Butterworth Lowpass Filter Design: Use of the CHEBY1 function */ /* Digital Filter Specifications: */ …
디지털 버터워스 저역통과 필터 설계
[신호처리] | cemtool | 04-23 | 조회 12148
디지털 버터워스 저역통과 필터 설계 ex8_21.cem/* Chapter 8: Example 8.21 Butterworth Lowpass Filter Design: Use of the BUTTER function */ /* Digital Filter Specifications: */ wp…
디지털 타원형 필터 설계
[신호처리] | cemtool | 04-23 | 조회 12000
디지털 타원형 필터를 설계해보자. ex8_20.cem/* Chapter 8: Example 8.20 BiLinear Transformation: Elliptic Lowpass Filter Design */ % Digital Filter Specifications: /* Digita…
디지털 제 2형 체비셰프 필터 설계
[신호처리] | cemtool | 04-23 | 조회 12233
디지털 제 2형 체비셰프 필터를 설계해보자. ex8_19.cem/* Chapter 8: Example 8.19 BiLinear Transformation: Chebyshev-2 Lowpass Filter Design */ /* Digital Filter Specifications: */ w…
디지털 제 1형 체비셰프 필터 설계
[신호처리] | cemtool | 04-23 | 조회 12417
디지털 제 1형 체비셰프 필터를 설계해보자. ex8_18.cem% Chapter 8: Example 8.18% % BiLinear Transformation: % Chebyshev-1 Lowpass Filter Design %% Digital Filter Specifications: /* Digital Filter …
디지털 버터워스 필터 설계
[신호처리] | cemtool | 04-23 | 조회 12130
디지털 버터워스 필터를 설계해보자. ex8_17.cem/* Chapter 8: Example 8.17 BiLinear Transformation: Butterworth Lowpass Filter Design */ /* Digital Filter Specifications: */ wp = 0…