Circle interpolation (calculate the values inside)

9 ビュー (過去 30 日間)
martin martin
martin martin 2019 年 3 月 15 日
回答済み: Rik 2019 年 3 月 15 日
Good evening,
I have a few more theoretical questions. Do you have any tips on how to calculate values inside a circle? I have a values, but these values are in vector:
values = 1:100;
I would like to place this value around the perimeter of the circle, then calculate the center of gravity. And then he calculated the points inside the circle as a perimeter value against the center of gravity value. The goal is to fill all the points in the ring, is that possible?
Or can you give me tips on some books or solutions?

採用された回答

Rik
Rik 2019 年 3 月 15 日
If you want to fill a circular area with a particular color, you can use this code:
center=[10,20];%xy coordinates of the center
radius=15;
figure(1),clf(1)%create a new figure (or bring focus to an old one and clear it)
theta=linspace(0,2*pi,100);
x=radius*cos(theta)+center(1);
y=radius*sin(theta)+center(2);
patch(x,y,'r')
daspect([1 1 1])%make data scale rectangular

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInterpolation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by