I want to find the solution for the eqautions x^2+y^2==3*x*y^2, x^3-x^2==y^2-y and plot graphs in matlab.
3 ビュー (過去 30 日間)
古いコメントを表示
To solve the equations mathematically, the command [solx,soly]=solve(x^2+y^2==3*x*y^2, x^3-x^2==y^2-y) can be used. However, I am unable to plot a graph for 'solx'. Can you please help with the plotting part of both solx,soly.
0 件のコメント
回答 (1 件)
madhan ravi
2018 年 9 月 16 日
syms x y
[solx,soly]=solve(x^2+y^2==3*x*y^2, x^3-x^2==y^2-y)
plot(solx,soly,'ok')
2 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!