Get acceleration from displacement
11 ビュー (過去 30 日間)
古いコメントを表示
Hello, I have a displacement function (attached) that I need to convert into acceleration function. Someone can help me?
0 件のコメント
回答 (1 件)
madhan ravi
2018 年 10 月 12 日
編集済み: madhan ravi
2018 年 10 月 12 日
y=displacement
t=time
velocity=diff(y)./diff(t)
acceleration=diff(y,2)./diff(t,2)
1 件のコメント
madhan ravi
2018 年 10 月 12 日
acceleration is double differentiation of displacement with respect to time , learn more about diff()
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!