derivative from set of values code.

i have a set of values of displacemnt and time values. how can i get the values of velocity and acceleration with this?

回答 (1 件)

KALYAN ACHARJYA
KALYAN ACHARJYA 2021 年 2 月 13 日

1 投票

Hints Only:
Extracts the displacement and time vector separately from the input data matrix , use indices colon":" for all rows or clumns
Velocity: The rate of change of displacement wrt time
velocity=diff(displacemnet)./diff(time)
See the detail of diff function here
Acceleration: The rate of change of velocity wrt time , do double differentiation or once more on above equation.

カテゴリ

ヘルプ センター および File ExchangeMathematics についてさらに検索

質問済み:

2021 年 2 月 13 日

回答済み:

2021 年 2 月 13 日

Community Treasure Hunt

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

Start Hunting!

Translated by