Filter löschen
Filter löschen

Differentiation without symbolic toolbox. Is it possible numerically?

49 Ansichten (letzte 30 Tage)
JayashP
JayashP am 23 Mär. 2016
Bearbeitet: Walter Roberson am 31 Jan. 2017
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'.'

Antworten (2)

Walter Roberson
Walter Roberson am 23 Mär. 2016

Jakub Rysanek
Jakub Rysanek am 31 Jan. 2017
Bearbeitet: Walter Roberson am 31 Jan. 2017

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by