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
2021-2-13
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 Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!