0

我有以下代码

B=[1 2 3; 10 20 30 ; 100 200 300 ; 500 600 800];
A=[100; 500; 300 ; 425];
SA = sum(A);
V={}; % number of rows for cell V = num of combinations -- column = 1                
n = 1;
 arr =  zeros(1,length(B))
for k = 1:length(B)                    
    for idx = nchoosek(1:numel(B), k)'  
       rows = mod(idx, length(B))
       if ~isequal(rows, unique(rows)) %if rows not equal to unique(rows)
           continue  %combination possibility valid      
       end %Ignore the combination if there are two elements from the same row 
       B_subset = B(idx)
       if (SA + sum(B_subset) <= 3000) %if sum of A + (combination) < 3000
           rows( rows==0 )=4
           arr(rows) = B_subset(:)
           V(n,1) = {arr}
           n = n + 1
            arr =  zeros(1,length(B))
        end
    end
end

如果 A 和 B 的某些值之和小于 3000,则这些组合应该是有效的。

我的代码的问题是, B 的最后一个值 ,B(3,3)在代码中只占一次。

如果您运行代码,您会注意到第 12 行包含一个V包含[0;0;0;800]的单元格。但还有其他可能的组合,例如[1;0;0;800]. 但是SA + (1 + 800) < 3000,代码不会打印出这种可能性。

我不知道为什么,有人可以帮我调试一下并找出为什么会跳过某些组合吗?特别是B(3,3)

4

1 回答 1

0

我怀疑这条线并没有完全按照你的意图做:

if ~isequal(rows, unique(rows))

相反,试试这个:

if ~isequal(length(rows), length(unique(rows)))
于 2013-03-08T06:56:12.310 回答