FRF magnitude calculation
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Felix Torner
el 4 de En. de 2012
Comentada: Hector Aguila
el 29 de En. de 2019
Hello all!
I have a question regading the caluculation of FRF magnitude spectra that I would really appreciate some help with.
I have a number of files, each containing single sided FRFs with the real part in the first column and the imaginary part in the second. The question is how to obtain the magnitude spectra. Does this work in the same way as for a FFT, i.e. i take abs(re+im), to get the magnitude, or do I simply extract the real part (first column) from the file?
This might seem as a trivial question, but I'm having real trouble finding a good answer.
Regards, Felix
1 comentario
Hector Aguila
el 29 de En. de 2019
La magnitud de la transformada se calcula sacando el valor absoluto del complejo que la representa, y la potencia espectral se calcula como el cuadrado de la magnitud de la transformada.
Respuesta aceptada
Wayne King
el 4 de En. de 2012
Hi Felix, you should form complex numbers in MATLAB from the first and second columns and take the magnitude squared (if it is a power calculation) of those complex numbers.
Más respuestas (1)
Dr. Seis
el 4 de En. de 2012
Or... if you want the magnitude and the input data is really just two columns of numbers(second column not specifically formatted as imaginary), then
data = % Read in data
data_mag = hypot(data(:,1),data(:,2));
3 comentarios
Dr. Seis
el 4 de En. de 2012
The magnitude is the length of the vector and the phase is the angle of the vector when complex value is plotted on a grid where the x-axis is the real part and the y-axis is the imaginary part. So... if
data_complex = complex(data(:,1),data(:,2));
Then,
data_mag = abs(data_complex);
data_phase = angle(data_complex);
Ver también
Categorías
Más información sobre PHY Components en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!