Minkowski sum of two sets

1 visualización (últimos 30 días)
Ashish
Ashish el 10 de Dic. de 2022
Comentada: Ashish el 11 de Dic. de 2022
Is there a function to calculate minkowski sum of two sets? basically an optimal way to calculate combinations of all possible vertices from the two sets.
Thanks to John D'Errico, I have a way to calculate the Minkowski Sum of polygons. I have attached a link below for reference.
Could someone help with implementing the same for two sets of points.
  2 comentarios
Jan
Jan el 10 de Dic. de 2022
What do you call "a set of points"? Which type and size of variable is it?
Ashish
Ashish el 11 de Dic. de 2022
My apologies for the lack of clarity, a set of points would be a set of n-dimensonal points of floating type

Iniciar sesión para comentar.

Respuesta aceptada

Jan
Jan el 10 de Dic. de 2022
Editada: Jan el 10 de Dic. de 2022
Guessing the type of the input:
A = rand(5, 2); % "Points" as x and y coordinates
B = rand(6, 2);
sA = size(A);
sB = size(B);
AB = reshape(A, [1, sA]) + reshape(B, [sB(1), 1, sB(2)]);
AB = reshape(AB, [], 2);
  1 comentario
Ashish
Ashish el 11 de Dic. de 2022
Thank you so much!
I will write back incase of any further queries

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by