harsharajkumar273's picture
Upload folder using huggingface_hub
7b4139b verified
Raw
History Blame Contribute Delete
404 Bytes
function env = envelope(p)
%-- Function which computes the envelope of a modulated signal
%-- Function prototype: env = envelope(p)
%-- Authors: Alfonso Rodriguez-Molares (alfonso.r.molares@ntnu.no)
%-- Olivier Bernard (olivier.bernard@creatis.insa-lyon.fr)
%-- $Date: 2016/03/01 $
%-- complex demodulation
env = reshape(abs(hilbert(p(:,:))),size(p));
end