How to create cirlces in matlab?

2 vues (au cours des 30 derniers jours)
Andrea Miceli
Andrea Miceli le 29 Juin 2021
Modifié(e) : KSSV le 29 Juin 2021
Hi everyone, I was wondering if there is any possibility of making a chart like this on matlab (this one I entered). Also including arrows.

Réponse acceptée

KSSV
KSSV le 29 Juin 2021
YEs you can draw such circles, using:
th = linspace(0,2*pi) ;
r = 1;
c = [ 0 0] ;
x = c(1)+r*cos(th) ;
y = c(2)+r*sin(th) ;
patch(X,y,'r')
Also you can show them by using markers, you can give the markers size, color and shape.
To draw arrow read about quiver, annotation.
  1 commentaire
Andrea Miceli
Andrea Miceli le 29 Juin 2021
Modifié(e) : KSSV le 29 Juin 2021
KSSV thank you so much. I was wondering if you could help me also on this one . No need of a code, just some infomation about it.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating, Deleting, and Querying Graphics Objects 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!

Translated by