Convert units to g
    6 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Nina Perf
 il 20 Set 2021
  
    
    
    
    
    Commentato: the cyclist
      
      
 il 20 Set 2021
            Converting to g
4 Commenti
  Stephen23
      
      
 il 20 Set 2021
				@Walter Roberson: how does dividing 4333 potrzebies per second squared by 9.80665 help?
  the cyclist
      
      
 il 20 Set 2021
				For the sake of anyone in the future, confused by the above interaction ... the question was edited, and some comments were deleted.
Risposta accettata
  Walter Roberson
      
      
 il 20 Set 2021
        %need some data for demonstration
t = seconds(0:0.5:10);
y = randn(1, length(t));
%now do the work
y_g = y ./ 9.80665;
plot(t, y_g);
xlabel('t (s)');
ylabel('g')
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Numeric Types in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
