Effacer les filtres
Effacer les filtres

Find all subset index of an array whose sums equal or nearest to a given target

1 vue (au cours des 30 derniers jours)
  • target = 700
  • array = [200 250 340 100 500 360]
  3 commentaires
Stalin Samuel
Stalin Samuel le 26 Sep 2015
yes sir.but i need the elements without Repetition
Walter Roberson
Walter Roberson le 26 Sep 2015
So 200,200,200,100 would be accepted as long as no other permutation of those values was emitted?

Connectez-vous pour commenter.

Réponses (1)

Andrei Bobrov
Andrei Bobrov le 26 Sep 2015
a = dec2bin((0:bin2dec(sprintf('%d',ones(1,numel(array)))))')-'0';
k = bsxfun(@times,a,array);
d = abs(sum(k,2) - 700);
out = k(d == min(d),:);

Catégories

En savoir plus sur Operators and Elementary Operations dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by