How to do partial differentiation of a function?

1 回表示 (過去 30 日間)
Yokuna
Yokuna 2021 年 6 月 21 日
回答済み: Star Strider 2021 年 6 月 21 日
The function is given as:
E1=ln((1+x1)/(1-x1));
How to do patial differentiation of E1 with respect to x1?

採用された回答

Star Strider
Star Strider 2021 年 6 月 21 日
This requires the Symbolic Math Toolbox:
syms x1
E1 = log((1+x1)/(1-x1))
E1 = 
dE1dx1 = diff(E1,x1)
dE1dx1 = 
dE1dx1 = simplify(dE1dx1, 500)
dE1dx1 = 
.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

製品


リリース

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by