How to do manual operation of cross multiplication or substitution?
1 回表示 (過去 30 日間)
古いコメントを表示
If
syms A B x
y = A*x^2 + B*x;
dy = diff(y)
d2y = diff(dy)
then how to get where d2y is the second derivation; using subs or any other command in MATLAB
0 件のコメント
回答 (1 件)
Chunru
2021 年 12 月 12 日
Is this what you want?
syms A B x z
y = A*x^2 + B*x;
dy = diff(y)
d2y = diff(dy)
z = d2y/x^2
4 件のコメント
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!