p(x,y) is defining a periodic function, with period X in the x direction and period Y in the y direction.
How do I convolve a periodic rect function with comb function
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mohammad
am 10 Jun. 2022
Kommentiert: Mohammad
am 10 Jun. 2022
p(x,y)=rect(2x/X)rect(2y/Y)⊗[comb(x/X)comb(y/Y)]
2 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Matt J
am 10 Jun. 2022
Another possibility is to download interpMatrix
Here is an example with a comb of sincs, rather than a comb of rects.
x=linspace(-3,+3,601); y=x;
kx=sinc( pi*x );
ky=sinc( pi*y*2 );
Ix=sum(interpMatrix(kx,'max',7,100),2);
Iy=sum(interpMatrix(ky,'max',13,50),2);
surf(x,y , Ix.*Iy','EdgeColor','none')
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

