how can i plot a simple circle having radius 8000???
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
mohini ramwala
le 1 Nov 2014
Réponse apportée : Image Analyst
le 1 Nov 2014
i want to construct a circle centered at ORIGIN havin radius 8000. I tried the code given in examples but it says that 'function definations are not permitted in this context'.So now what should i do???
1 commentaire
Geoff Hayes
le 1 Nov 2014
Mohini - in the future, if you are observing errors with your code, then post the code as well so that we can provide some guidance as to what to do to correct the problems (and/or reference the examples).
Réponse acceptée
Geoff Hayes
le 1 Nov 2014
Modifié(e) : Geoff Hayes
le 1 Nov 2014
Mohini - there are a number of circle drawing functions on the File Exchange so you could find something there.
Else, you can use the rectangle function to draw your circle. Since you want the circle centred at the origin (0,0) and have a radius of 8000, then try the following
rectangle('Position',[-8000 -8000 16000 16000],'Curvature',[1 1]);
axis equal
Or, more generally,
radius = 8000;
originX = 0;
originY = 0;
rectangle('Position',[originX-radius originY-radius 2*radius 2*radius], ...
'Curvature',[1 1]);
axis equal
Plus de réponses (2)
Jan
le 1 Nov 2014
The meaning of a "radius of 8000" is not clear, because you forgot to define the units. It matters, if you mean "data"-Units, such that the X-Tick labels are set to -8000 to 8000, of if you want it to be in cm or pixels.
The error message means, that you tried to insert the definition of a function in the command window or in a script. Functions can be defined in function files only, and such a function file can be recognized by the fact, that it starts with the term "function".
You can find a lot of corresponding threads in the forum, when you take the time to search for (a part of) the error message. It is recommended to search in a forum before asking a new -better: old- question.
2 commentaires
Image Analyst
le 1 Nov 2014
It's worth checking the FAQ http://matlab.wikia.com/wiki/FAQ#How_do_I_create_a_circle.3F There is code in there to make circles and ellipses.
0 commentaires
Voir également
Catégories
En savoir plus sur Matrix Indexing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!