identifying the critical points of a bivariate function

2 vues (au cours des 30 derniers jours)
ektor
ektor le 9 Mar 2020
Modifié(e) : ektor le 9 Mar 2020
Dear all,
I have this function below and I plotted it in a 3D space. Is it possible to mark the critical points on the graph so as to be visible to the reader? Similarly for the max or min value of the function?
Best
syms x y
f = 4*x.^2+3*y.^2 ;
fx = diff(f,x);
fy = diff(f,y);
[xc,yc] = solve(fx,fy,x,y); [xc,yc];
fxx = diff(fx,x); fxy = diff(fx,y); fyy = diff(fy,y);
D = fxx*fyy - fxy^2;
subs(D,{x,y},{xc(1),yc(1)});
subs(fxx,{x,y},{xc(1),yc(1)});
figure(1); ezsurf(f,[-10,50,-10,50]);

Réponses (0)

Catégories

En savoir plus sur Graph and Network Algorithms dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by