일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- DP
- Race condition
- DSP
- 게임개발
- MAC
- Security
- RBAC
- dtft
- frequency-domain spectrum analysis
- 유니티
- Frequency Response
- sampling theory
- link layer
- AINCAA
- dirty cow
- linear difference equation
- 배경 그림
- SNR
- 메카님
- pdlc
- ret2libc
- 게임 개발
- polymorphism
- 유스케이스
- convolution
- STCF
- MLFQ
- 운영체제
- Unity #Indie Game
- stride
Archives
- Today
- Total
다양한 기록
Convolution 본문
컨볼루션 속성
- Commutative .. x[n]*h[n] = h[n]*x[n]
- Distributive .. x[n] * {h1[n] + h2[n]} = x[n]*h1[n] + x[n]*h2[n]
- Associative .. {x[n]*h1[n]}*h2[n] = x[n]*{h1[n]*h2[n]}
컨볼루션 계산
- Direct evaluation
- Graphical apprach
Direct Evaluation
x[n] = {3, 4, 5}, h[n] = {2, 1}
시작 포인트: 0 + 0
끝 포인트: 2 + 1 = 3
y[0] = x[0]h[0] = 6
y[1] = x[0]h[1] + x[1]h[0] = 3 + 8 = 11
y[2] = x[0]h[2] + x[1]h[1] + x[2]h[0] = 0 + 4 + 10 = 14
y[3] = x[0]h[3] + x[1]h[2] + x[2]h[1] + x[3]h[0] = 5
y[n] = {6, 11, 14, 5}
Graphical Approach
y[n] = {2, 5, 4, 6, 1, 2}
'멀티미디어신호처리' 카테고리의 다른 글
DTFT & properties, Convolution (0) | 2024.12.01 |
---|---|
Discrete Cross-Correlation (0) | 2024.11.30 |
Moving Average Filter, Echo, Reverberation (0) | 2024.11.30 |
Discrete-time system properties (0) | 2024.11.30 |
Nyquist-Shannon sampling theory, SNR (0) | 2024.11.30 |