You I have cell with an 8x8 complex matrix, which holds some secret data, and I converted it back to spatial domain using ifft2
as follows:
F2{i1,j1}=complex(re,Img);
ff{i1,j1}=ifft2(F2{i1,j1});
But ff
still complex (it should be double).
Why is that?