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 vues (au cours des 30 derniers jours)
busra dogru
busra dogru le 11 Avr 2019
Commenté : Torsten le 15 Avr 2019
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.

Réponses (1)

Torsten
Torsten le 11 Avr 2019
theta = linspace(0,2*pi,100);
x = a + r*cos(theta);
y = b + r*sin(theta);
plot(x,y)
  8 commentaires
busra dogru
busra dogru le 14 Avr 2019
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 le 15 Avr 2019
x and y are vectors of doubles of the same size as "theta" - so the setting B = A(x,y) doesn't make sense.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Discrete Data Plots 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