Dirac delta Function Approximation

Posted at 2008/09/21 23:32 // in 전자 공학/Matlab // by downright
DIRAC(X) is zero for all X, except X == 0 where it is infinite.
     DIRAC(X) is not a function in the strict sense, but rather a distribution with
     int(dirac(x-a)*f(x),-inf,inf) = f(a) and diff(heaviside(x),x) = dirac(x).

Dirac.m
function Y = dirac(X)
Y = zeros(size(X));
Y(X == 0) = Inf;

< Approximate Dirac delta Function >
사용자 삽입 이미지
< Matabl Promgram Source >

< Figure >
크리에이티브 커먼즈 라이센스
Creative Commons License
2008/09/21 23:32 2008/09/21 23:32

이 글에는 트랙백을 보낼 수 없습니다

댓글을 남겨주세요.

[로그인][오픈아이디란?]