create point betweem two points
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Majid Al-Sirafi
el 15 de Jul. de 2012
Editada: Walter Roberson
el 28 de En. de 2018
Hi every one
I have two points, for example
(2,5)-(10,15)... how can I create a new point between them???
thanks a loot
majid
0 comentarios
Respuesta aceptada
Walter Roberson
el 15 de Jul. de 2012
NumberNewPoints = 3;
xvals = linspace(2, 10, NumberNewPoints+2);
yvals = linspace(5, 15, NumberNewPoints+2);
pts = [xvals(:), yvals(:)];
Now the points are the rows.
11 comentarios
Walter Roberson
el 16 de Jul. de 2012
Editada: Walter Roberson
el 28 de En. de 2018
pts(1,:) %x,y for starting point
pts(2,:) %x,y for intermediate point
pts(3,:) %x,y for final point
Más respuestas (1)
Ver también
Categorías
Más información sobre Polygons en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!