How can I calculate a dirac function of 2D discrete signal
조회 수: 6 (최근 30일)
이전 댓글 표시
For example, I have 20 2D points, as the input signal. (xi, yi) i = 1...Z , Assume that Z = 20, i.e. 20 points. How can I calculate this equation? The function is a dirac pulse.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/150280/image.png)
답변 (2개)
Wayne King
2013년 10월 2일
편집: Wayne King
2013년 10월 2일
Unless I'm missing something, it's just a 1 at the location x_i,y_i in your matrix. For example:
X = zeros(20,20);
X(10,10) = 1;
댓글 수: 2
Wayne King
2013년 10월 2일
(xi, yi) is the location of the impulse, that is just shifting the impulse from (0,0) to the location (xi,yi)
Youssef Khmou
2013년 10월 3일
hi @Wayne King gave you the kernel of the problem, here is another way out:
H=0*meshgrid(linspace(-0.5,0.5,20));
H(floor(end/2),floor(end/2))=1.00;
surf(H)
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!