drawing a circle

7 Ansichten (letzte 30 Tage)
lowcalorie
lowcalorie am 23 Mai 2012
Beantwortet: Chad Greene am 9 Dez. 2014
please help i need to draw a green circle of radius 0.8 centered at x =2 , y=1.5 and display the result with the correct aspect ratio that is as a circle not an ellipse
then i need to fill the circle with gray and mark the center of the circle with a black X

Antworten (2)

Image Analyst
Image Analyst am 23 Mai 2012
Make sure you set "axis square" or "axis equal" and call "hold on" before you call text() or plot() to put on the "X".
  3 Kommentare
Oleg Komarov
Oleg Komarov am 23 Mai 2012
Have you checked the link? It has code examples.
Also do NOT double post.
Your post is NOT an emergency:
http://www.mathworks.com/matlabcentral/answers/29922-why-your-question-is-not-urgent-or-an-emergency
Walter Roberson
Walter Roberson am 23 Mai 2012
You do not actually need "hold on" before using text() or line() or patch() or a small number of other primitive calls. However, plot() is not a primitive call and you _do_ need "hold on" before using it to overlay data on the same axes.

Melden Sie sich an, um zu kommentieren.


Chad Greene
Chad Greene am 9 Dez. 2014
With circles
circles(2,1.5,0.8,'facecolor','green');
axis equal

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by