Power spectral density unit conversion
    27 views (last 30 days)
  
       Show older comments
    
    Nguyen Trieu
 on 17 Apr 2020
  
    
    
    
    
    Edited: Nguyen Trieu
 on 21 Apr 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 Comments
Accepted Answer
  Devineni Aslesha
    
 on 20 Apr 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 Comments
More Answers (0)
See Also
Categories
				Find more on Parametric Spectral Estimation in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
