Convert units to g

1 Ansicht (letzte 30 Tage)
Nina Perf
Nina Perf am 20 Sep. 2021
Kommentiert: the cyclist am 20 Sep. 2021
Converting to g
  4 Kommentare
Stephen23
Stephen23 am 20 Sep. 2021
@Walter Roberson: how does dividing 4333 potrzebies per second squared by 9.80665 help?
the cyclist
the cyclist am 20 Sep. 2021
For the sake of anyone in the future, confused by the above interaction ... the question was edited, and some comments were deleted.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 20 Sep. 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')
  1 Kommentar
Nina Perf
Nina Perf am 20 Sep. 2021
Thank you so much for your time!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by