how would i put Differentiate the function in matlab
1 回表示 (過去 30 日間)
古いコメントを表示
4. Differentiate the function 𝐷(𝑡)=1+16t^2/(4t)^3
in matlab to get the result of -16^2+4/64t^4
I need to find prood on how i got my answer but i have a hard time using matlab. Please help
1 件のコメント
the cyclist
2021 年 9 月 1 日
Not to sound too flippant, but did you try googling differentiate matlab? The top hits point you directly to MATLAB documentation that should help.
回答 (1 件)
Erik Huuki
2021 年 9 月 2 日
編集済み: Erik Huuki
2021 年 9 月 2 日
Above is the link for differential equations documentation
The answer for your particular example, Also I may add that your solution you provided is incorrect
syms D(t)
D = 1+16*t^2/(64*t^3)
diff(D,t,1)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!