Inserting a circle at specific coordinates
1 回表示 (過去 30 日間)
古いコメントを表示
I have a group of data, which when plotting gives me a circle. I want to have the circles center to be at (-1,1)in another plot of data.
How do i do this?
I hope someone can help me, thank you :)
1 件のコメント
採用された回答
Mischa Kim
2014 年 2 月 19 日
編集済み: Mischa Kim
2014 年 2 月 19 日
Rasmus, for the general case (circle with noise) check out this entry in the File Exchange. The app will give you radius R and the center of the circle (xc,yc). With this data you can then simply
t = linspace(0,2*pi,100);
x_new = R*cos(t) + xc_new;
y_new = R*sin(t) + yc_new;
plot(x_new,y_new)
1 件のコメント
Mischa Kim
2014 年 2 月 19 日
If your add-on question is about adding the circle to another plot then use
hold on
before the plot commands.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Geographic Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!