How to solve quadratic equation in x and y?
4 ビュー (過去 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
0 件のコメント
採用された回答
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
figure
fsurf(f, [-5 5 -5 5])
.
5 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!