Matlab如何随机分布一个矩阵中的元素



大家好,如何使一个矩阵随机分布到另一个矩阵n,

m = [ 1 1 3 3 3 4 4 6 6 7 7 7];
n = zeros(3,10);

必须顺序相同,例如:4 4 4,7 7 7。所需的结果可以是{或其他组合):

distributed_matrix =
 0     1     1     0     7     7     7     0     0     0
 0     0     3     3     3     4     4     0     0     0
 6     6     6     0     0     0     0     0     0     0

谢谢…

如果对m的元素分布顺序没有任何约束,那么randsample可能会有所帮助:

ridx = randsample( numel(n), numel(m) ); %// sample new idices for elelemtns
n(ridx) = m;

查看额外的约束,事情变得有点混乱。
要识别m中的序列及其范围,可以:

idx = [1 find(diff(m)~=0)+1]; 
extent = diff([idx numel(m)+1]);  %// length of each sequence
vals = m(idx);  %// value of each sequence

一旦你有了序列和它们的长度,你可以随机洗牌它们,然后沿着线分布…

如果我对你的问题理解正确的话,可能的解决办法是

m = [ 1 1 3 3 3 4 4 6 6 7 7 7];
n = zeros(3,10);
p= randperm(numel(n)); % generate the random permutation
n(p(1:length(m)))= m   % assign the elments of m to the elements with indices taken 
                       % from the first length(m) numbers of random permutation

相关内容

  • 没有找到相关文章

最新更新