フィルターのクリア

Convert units to g

1 回表示 (過去 30 日間)
Nina Perf
Nina Perf 2021 年 9 月 20 日
コメント済み: the cyclist 2021 年 9 月 20 日
Converting to g
  4 件のコメント
Stephen23
Stephen23 2021 年 9 月 20 日
@Walter Roberson: how does dividing 4333 potrzebies per second squared by 9.80665 help?
the cyclist
the cyclist 2021 年 9 月 20 日
For the sake of anyone in the future, confused by the above interaction ... the question was edited, and some comments were deleted.

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2021 年 9 月 20 日
%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 件のコメント
Nina Perf
Nina Perf 2021 年 9 月 20 日
Thank you so much for your time!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by