MATLAB CODE TO FIND LOCAL EXTREMA OF A FUNCTION
    16 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
what is the matlab code to identify local extrema of follwing function f(x,y)=x^2+y^3-3*x*y , -5<=y<=5
0 comentarios
Respuestas (3)
  Torsten
      
      
 el 13 de Ag. de 2019
        syms x y
f = x^2 + y^3 - 3*x*y;
fx = diff(f,x);
fy = diff(f,y);
eqns = [ fx == 0, fy == 0];
vars = [x y];
[solx, soly] = solve(eqns, vars)
0 comentarios
  HARSHAVARDINI KRISHNAN
 el 21 de En. de 2021
        syms x y
f = x^2 + y^3 - 3*x*y;
fx = diff(f,x);
fy = diff(f,y);
eqns = [ fx == 0, fy == 0];
vars = [x y];
[solx, soly] = solve(eqns, vars)
0 comentarios
Ver también
Categorías
				Más información sobre Calculus en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



