Minkowski sum of two sets

2 vues (au cours des 30 derniers jours)
Ashish
Ashish le 10 Déc 2022
Commenté : Ashish le 11 Déc 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 commentaires
Jan
Jan le 10 Déc 2022
What do you call "a set of points"? Which type and size of variable is it?
Ashish
Ashish le 11 Déc 2022
My apologies for the lack of clarity, a set of points would be a set of n-dimensonal points of floating type

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 10 Déc 2022
Modifié(e) : Jan le 10 Déc 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 commentaire
Ashish
Ashish le 11 Déc 2022
Thank you so much!
I will write back incase of any further queries

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by