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 CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by