How is derivative made in Matlab ?

2 ビュー (過去 30 日間)
Beyza Taka
Beyza Taka 2020 年 5 月 2 日
回答済み: Birdman 2020 年 5 月 2 日
The velocity change of a motile is given as V(T)=T^3-6T^2+7 m/s.
calculate the acceleration at t= 3.5 seconds on matlab
to find the acceleration, I have to take the derivative of the given function and multiply it by 3.5.I find the derivative of the function, but I can't multiply it.

採用された回答

Birdman
Birdman 2020 年 5 月 2 日
syms v(t)
v(t)=t.^3-6t.^2+7;
a(t)=diff(v);
result=a(3.5)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by