How to modify loop

1 visualización (últimos 30 días)
Robert Smith
Robert Smith el 8 de Sept. de 2017
Editada: Robert Smith el 8 de Sept. de 2017
I'm attempting to modify code to loop
  1 comentario
José-Luis
José-Luis el 8 de Sept. de 2017
Editada: José-Luis el 8 de Sept. de 2017
How does the code you show help you with your objective? It is not Matlab syntax.

Iniciar sesión para comentar.

Respuestas (1)

Roger Stafford
Roger Stafford el 8 de Sept. de 2017
There is no single matlab function that will calculate it, but you can
make use of the geometrical theorem that the radius of a circumscribing
circle of a triangle is equal to the product of its three sides divided by
four times the triangle's area.
a = sqrt((x1-x2)^2+(y1-y2)^2); % The three sides
b = sqrt((x2-x3)^2+(y2-y3)^2);
c = sqrt((x3-x1)^2+(y3-y1)^2);
s = (a+b+c)/2;
A = sqrt(s*(s-a)*(s-b)*(s-c)); % Area of triangle
R = a*b*c/(4*A); % Radius of circumscribing circle

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by