x^2 + y^2 =9
7 次查看(过去 30 天)
显示 更早的评论
I want to plot the above equation in matlab but i dont know how to plot please help or provide me code
0 个评论
回答(2 个)
Dimitris Kalogiros
2019-10-29
编辑:Dimitris Kalogiros
2019-10-29
This equation depicts a circle with radious 3.
clc; clearvars;
syms x y
eq= x^2+y^2==9
fimplicit(eq, [-3 3]);
xlabel('x'); ylabel('y');
ax=gca;
ax.YAxisLocation='origin'; ax.XAxisLocation='origin' ;
ax.XLim=[-5 5]; ax.YLim=[-5 5];
clc; clearvars;
ci=@(x,y) x.^2+y.^2-9;
fimplicit(ci, [-3 3 -3 3]);
xlabel('x'); ylabel('y');
ax=gca;
ax.YAxisLocation='origin'; ax.XAxisLocation='origin' ;
ax.XLim=[-5 5]; ax.YLim=[-5 5];
0 个评论
Image Analyst
2024-5-11
viscircles([0,0], 3); % Plot circle centered at (0,0) and with radius 3
grid on; % Show gridlines
axis square % Make sure it's square and not elliptical by making x and y scale the same
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!