matlab中矩阵的所有组合

时间:2012-12-07 10:04:13

标签: matlab matrix combinations

我正在尝试找到n-by-n矩阵的所有组合而不重复。

例如,我有一个这样的矩阵:

A = [321 319 322; ...
     320 180 130; ...
     299 100 310];

我想要以下结果:

  

(321 180 310)
  (321 130 100)
  (319 320 310)
  (319 139 299)
  (322 320 100)
  (322 180 299)

我尝试过使用ndgrid,但它会占用行或列两次。

3 个答案:

答案 0 :(得分:2)

这是一个使用permsmeshgrid的更简单(原生)解决方案:

N = size(A, 1);
X = perms(1:N);                    % # Permuations of column indices
Y = meshgrid(1:N, 1:factorial(N)); % # Row indices
idx = (X - 1) * N + Y;             % # Convert to linear indexing
C = A(idx)                         % # Extract combinations

结果是一个矩阵,每行包含不同的元素组合:

C =

   321   180   310
   319   320   310
   321   130   100
   319   130   299
   322   320   100
   322   180   299

此解决方案还可以缩短为:

C = A((perms(1:N) - 1) * N + meshgrid(1:N, 1:factorial(N)))

答案 1 :(得分:0)

ALLCOMB是您问题的关键

E.g。我不是MATLAB机器的前面所以,我从网上拿了一个样本。

x = allcomb([1 3 5],[-3 8],[],[0 1]) ;
ans
1 -3 0
1 -3 1
1 8 0
...
5 -3 1
5 8 0
5 8 1

答案 2 :(得分:0)

您可以使用perms置换列,如下所示:

% A is given m x n matrix
row = 1:size( A, 1 );
col = perms( 1:size( A, 2 ) );

B = zeros( size( col, 1 ), length( row )); % Allocate memory for storage

% Simple for-loop (this should be vectorized)
% for c = 1:size( B, 2 )
%     for r = 1:size( B, 1 )
%         B( r, c ) = A( row( c ), col( r, c ));
%     end
% end

% Simple for-loop (further vectorization possible)
r = 1:size( B, 1 );
for c = 1:size( B, 2 )
    B( r, c ) = A( row( c ), col( r, c ));
end