Can anyone help me to generate a matrix of 0's and 1's randomly in which each contains only one 1 like [ 0 1 0 0 0; 1 0 0 0 0; 0 0 0 1 0].

1 次查看(过去 30 天)
for example
[0 1 0 0 0; 1 0 0 0 0; 0 0 0 1 0]

采纳的回答

Andrei Bobrov
Andrei Bobrov 2016-6-17
编辑:Andrei Bobrov 2016-6-17
[~,ii] = sort(rand(3,5),2)
out = ii == 1
or
out = zeros(3,5)
[m,n] = size(out);
out(sub2ind([m,n],1:m,randperm(n,m))) = 1
  3 个评论
Shameer Parmar
Shameer Parmar 2016-6-17
@Andrei: your first solution producing sometime repeated values..like..
out =
1 0 0 0 0
1 0 0 0 0
0 0 1 0 0
and in second solution, what is m and n ?

请先登录,再进行评论。

更多回答(2 个)

Shameer Parmar
Shameer Parmar 2016-6-17
eye(10);

Jos (10584)
Jos (10584) 2016-6-17
One 1 in each ... what? rows, columns, or both?
Given your examples and comment I assume both, so here is a simple one-liner. NR and NC are the number of rows and columns, respectively. Note that NC should be larger or equal to NR
A = full(sparse(1:NR, randperm(NC,NR), 1, NR, NC))

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by