How to create cirlces in matlab?

1 次查看(过去 30 天)
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.

采纳的回答

KSSV
KSSV 2021-6-29
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 个评论
Andrea Miceli
Andrea Miceli 2021-6-29
编辑:KSSV 2021-6-29
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by