Borrar filtros
Borrar filtros

Variable q4 has an incorrect value.

1 visualización (últimos 30 días)
lateef
lateef el 14 de Mzo. de 2024
Respondida: Walter Roberson el 14 de Mzo. de 2024
the original question states assign g(x,y)=xy/x^2+y^2 and calculate fyxx(1.2,3.8) (tripe derivative!) and assign the result to q4
syms x y
g(x,y)=x*y/(x^2=y^2)
q4=subs(diff(diff(g(x,y),y),x),{x,y},{1.2,3.8})
  1 comentario
lateef
lateef el 14 de Mzo. de 2024
does anyone see whrere i have an incorrect value because i keep getting that error message

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 14 de Mzo. de 2024
syms x y
g(x,y) = x*y/(x^2+y^2)
g(x, y) = 
dyxx = diff(diff(diff(g(x,y),y),x),x)
dyxx = 
q4 = subs(dyxx,{x,y},{1.2,3.8})
q4 = 

Más respuestas (0)

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by