일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Delegate
- Replication
- photon fusion2
- dirty cow
- animation
- stride
- 언리얼 엔진
- 유니티
- gas
- ability task
- 유스케이스
- gameplay effect
- MLFQ
- gameplay ability system
- 게임개발
- Security
- map design
- gravity direction
- Aegis
- unity
- 게임 개발
- 메카님
- MAC
- CTF
- Unreal Engine
- Race condition
- Multiplay
- ret2libc
- DSP
- 언리얼엔진
- Today
- Total
목록convolution (2)
Replicated

Discrete-Time Fourier TransformDTFT => 아날로그 시그널은 descrete signal로 변환 (Frequency Spectrum)Frequency Spectrum : |X(Ω)|DTFT가 존재하려면? ..만족해야 함 문제오메가는 라디안 프리퀀시 .. 연속적임=> DFT 사용하지만 얘는 느림=> FFT 사용 FFT (Fast Fourier Transform)- 1965, Cooley와 Turkey- DSP 시스템이 실시간에 작동하도록 만들어줌 ex.x[n] = δ[n]=> DTFT 취하면 X(Ω) = 1 .. 모든 주파수 대역에 영향을 끼침=> White noise .. 반대를 color noise라 함 x[n] = δ[n-n0] => e^-njΩx[n] = {1, 0, 3..

컨볼루션 속성- 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 Evaluationx[n] = {3, 4, 5}, h[n] = {2, 1}시작 포인트: 0 + 0끝 포인트: 2 + 1 = 3 y[0] = x[0]h[0] = 6y[1] = x[0]h[1] + x[1]h[0] = 3 + 8 = 11y[2] = x[0]h[2] + x[1]h[1] + x[2]h[0] = 0 + 4 + ..