Using (x-a) ^ 2 + (y-b) ^ 2 = r ^ 2, the values ​​of a, b and r are known. How do I find x and y values?

조회 수: 2 (최근 30일)
busra dogru
busra dogru 2019년 4월 11일
댓글: Torsten 2019년 4월 15일
I know the values ​​a, b and r. (x-a) ^ 2 + (y-b) ^ 2 = r^2 providing the formula I want to calculate the x and y points . Thank you in advance for your help.

답변 (1개)

Torsten
Torsten 2019년 4월 11일
theta = linspace(0,2*pi,100);
x = a + r*cos(theta);
y = b + r*sin(theta);
plot(x,y)
  댓글 수: 8
busra dogru
busra dogru 2019년 4월 14일
Hello again. I can calculate x and y points with your code. I'm trying to check if these points are in the binary image. I get the following error when I run the following code;
[b, a] = find(newImage);
A = [a, b];
[m,n] = size(A);
B = 1;
t = 1;
while(t<51)
for p=1:m
while(B==1)
theta = linspace(0,2*pi);
x = A(p,1) + round(t*cos(theta));
y = A(p,2) + round(t*sin(theta));
x = x';
y = y';
if x == 0
x = 1;
end
if y == 0
y = 1;
end
B = A(x,y);
t = t+1;
end
end
end
disp(x,y);
Subscript indices must either be real positive integers or logicals.
Error in Untitled18 (line 79)
B = A(x,y);
What can I do to solve this error? Thanks in advance ..
Torsten
Torsten 2019년 4월 15일
x and y are vectors of doubles of the same size as "theta" - so the setting B = A(x,y) doesn't make sense.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Discrete Data Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by