I'm working on extracting the phase information in a given signal in MATLAB. I've the following vector;
signal = [exp(1i*10) exp(1i*100) exp(1i*1000) exp(1i*10000)];
When I use angle function in MATLAB to calculate the phase value, it returns the following result.
angle(signal) = -2.5664 -0.5310 0.9735 -2.8310
I want to calculate the original phase values, as follows,
[10 100 1000 10000];
- How to find the original phase values above interval [-π,π] in MATLAB?