Showing points in 2D map.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Nava Subedi
el 15 de Oct. de 2018
Editada: Nava Subedi
el 18 de Oct. de 2018
How to plot these four points in 2D.
T1 = [0.000, 0.000]; T2 = [67.624, -0.232]; T3 = [66.966, -67.904]; T4 = [-0.494, -67.230];
If these points are in the circumference of a circle, how to find the center and how to move center into (0, 0)?
0 comentarios
Respuesta aceptada
Star Strider
el 18 de Oct. de 2018
Finding the centre and radius is trivial:
T0 = [T1; T2; T3; T4];
C = mean(T0); % Circle Centre
R = mean(hypot(T0(:,1)-C(1), T0(:,2)-C(2))); % Circle Radius
I leave the rest to you.
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!