To check the perfect reconstruction property of the inverse Mellin
transform, we consider an analytic signal, compute its fast Mellin
transform with an upper frequency bound of 0.5, and apply on the output
vector the ifmt algorithm:
sig=atoms(128,[64,0.25,32,1]); clf;
[mellin,beta]=fmt(sig,0.08,0.5,128);
x=ifmt(mellin,beta,128); plot(abs(x-sig));
We can observe the almost perfect equality between x and sig.
|