How to find the smoothness of these results?

조회 수: 3 (최근 30일)
Lala0099
Lala0099 2019년 4월 9일
답변: Jan 2019년 4월 9일
I have a set of measurements of acceleration (in x, y, z direction).
I am supposed to be finding the indicator of the signal to show how smooth it is (jerk metric).
But i don`t know how to do it.
i understand that i have to use differentiation, to get the derivative of data ( i dont know if i have to differentiate the acceleration values).
Could someone help me to get some ideas?
Thank you
  댓글 수: 1
John D'Errico
John D'Errico 2019년 4월 9일
Jerk is a term sometimes used to describe the third derivative, thus the derivative of acceleration. If you have acceleration versus time, then cmpute the derivative.

댓글을 달려면 로그인하십시오.

답변 (1개)

Jan
Jan 2019년 4월 9일
Acceleration = rand(1, 1000); % Test data
Jerk = gradient(Acceleration);
This replies the two sided quotient of differences as 2nd order approximation of the derivative.

카테고리

Help CenterFile Exchange에서 Smoothing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by