Deriving acceleration from velocity equation
이전 댓글 표시
답변 (1개)
EDIT — (20 May 2023 at 12:46)
If this is symbolic, of course, just take the derivative with respect to t —
syms g H L t
v = sqrt(2*g*H)*tanh((sqrt((2*g*H)/(2*L)))*t)
a = diff(v,t)
.
댓글 수: 2
Torsten
2023년 5월 20일
My guess is that H is a function of t.
Star Strider
2023년 5월 20일
Your guess is likely much better than mine.
In that instance, the syms call becomes:
syms g H(t) L t
and the resulting derivative difficult to work with.
However if the result is numeric, gradient would likely still work.
카테고리
도움말 센터 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
