How to do partial differentiation of a function?
1 回表示 (過去 30 日間)
古いコメントを表示
The function is given as:
E1=ln((1+x1)/(1-x1));
How to do patial differentiation of E1 with respect to x1?
0 件のコメント
採用された回答
Star Strider
2021 年 6 月 21 日
syms x1
E1 = log((1+x1)/(1-x1))
dE1dx1 = diff(E1,x1)
dE1dx1 = simplify(dE1dx1, 500)
.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Symbolic Math Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!