image thumbnail
from Surfacelet Toolbox by Yue Lu
Surfacelet transform: a multiresolution transform for efficient representation of multidimensional s

sinc(x)
function y = sinc(x)

y = pi * x;

sel = abs(y) > 1e-15;

y(sel) = sin(y(sel)) ./ y(sel);
y(~sel) = 1;

Contact us at files@mathworks.com