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!