Power spectral density unit conversion
51 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Nguyen Trieu
le 17 Avr 2020
Modifié(e) : Nguyen Trieu
le 21 Avr 2020
Hello,
Is there a quick way to convert the Noise Power Spectral Density of the accelerometer from 300µg/√Hz to m/s^2 as an acceleration unit?
Thanks.
0 commentaires
Réponse acceptée
Devineni Aslesha
le 20 Avr 2020
To convert the Noise Power Spectral Density of the accelerometer as an acceleration unit, see the code below.
psd = 300*1e-6;
w = 2*pi*f; % f is in Hz
psdToAcc = psd*sqrt(w); % Converting psd to acceleration unit 'g'
gTomps2 = convacc(psdToAcc,'G''s','m/s^2');
For more information, refer the following link.
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Parametric Spectral Estimation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!