Filter löschen
Filter löschen

error while using complex2real

1 Ansicht (letzte 30 Tage)
Tricky
Tricky am 28 Nov. 2011
I'm trying to extract the 'real' values of amplitudes and phases from the fft output A1
Y=complex2real(A1);
Where A1 is containing the Fourier transform values of a image as 1323*1 of single type.
its showing error like this ??? Undefined function or method 'complex2real' for input arguments of type'single'

Akzeptierte Antwort

Wayne King
Wayne King am 28 Nov. 2011
complex2real is not a MATHWORKS' function. That error message is indicating that MATLAB does not know anything about that function. If that is a function someone has written, then make sure it is on your MATLAB path. Use addpath() or pathtool() to add the folder where that function lives.
If you want the polar form of the Fourier coefficients, you can use
abs(A1) % magnitude
angle(A1) %phase

Weitere Antworten (0)

Kategorien

Mehr zu Vibration Analysis finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by