Differentiation without symbolic toolbox. Is it possible numerically?

조회 수: 121 (최근 30일)
JayashP
JayashP 2016년 3월 23일
편집: Walter Roberson 2017년 1월 31일
Suppose I have a function
x = 0:0.1:10;
fxy = @(x,y) x^3 +3*x*y^2 + 2*x
I want differentiate w.r.t 'x'
dfxy = @(y)diff(fxy,1)
and then I want to solve for 'y' for 'dfxy(y) = 0'
y0 = 0.1;
yy = fsolve(dfxy,y0)
is this possible without using symbolic toolbox? I get error like 'Function 'diff' is not supported for class 'function_handle'.'

답변 (2개)

Walter Roberson
Walter Roberson 2016년 3월 23일

Jakub Rysanek
Jakub Rysanek 2017년 1월 31일
편집: Walter Roberson 2017년 1월 31일

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by