how to calculate the partial derivatives for a given function of two variable ?

204 ビュー (過去 30 日間)
NoorKh
NoorKh 2019 年 12 月 13 日
編集済み: Dyuman Joshi 2023 年 8 月 12 日
How can I write code to calculate the partial derivatives a given function of two variable ?

回答 (1 件)

Dyuman Joshi
Dyuman Joshi 2019 年 12 月 14 日
編集済み: Dyuman Joshi 2023 年 8 月 12 日
Hello, You can use diff function operator to obtain partial derivatives as follows:
1- Define the function using symbolic variables
%Random function for example
syms x y;
f(x,y) = x^2 + y^2 + x*y;
2-use diff with respect to the variable you want to differentiate.
fx = diff(f,x)
fx(x, y) = 
fy = diff(f,y)
fy(x, y) = 
You can also find the value of parial derivatives by substituting the value -
fx(1,0)
ans = 
2

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by