How to solve quadratic equation in x and y?

7 次查看(过去 30 天)
Hello everyone,
Could someone help me, please?
I would like to solve this quadratic equation:
f(x,y) = 3x^2 - 6y^2 + 1
and plot it in the 3D space. For the surface in the space I would like to have the x, y couples of data.
Thank you very much
Laura

采纳的回答

Star Strider
Star Strider 2021-10-7
I am not certain what solve is in this context.
Plotting the function is straightforward —
syms x y
f(x,y) = 3*x^2 - 6*y^2 + 1
f(x, y) = 
figure
fsurf(f, [-5 5 -5 5])
.
  5 个评论

请先登录,再进行评论。

更多回答(1 个)

laura bagnale
laura bagnale 2021-10-8
Thank you very much for your reply, Star Strider.
Sorry, I was unclear.
I meant f(x,y) = 3*x^2 - 6*y^2 + 1 == 0, so I need to find the couple (x,y), real, that very this equation.
Thank you a lot
Laura

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

标签

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by