creating binary vector with determed number of ones
1 view (last 30 days)
Show older comments
loukil sana
on 24 Apr 2019
Commented: loukil sana
on 24 Apr 2019
Hello,
i have a vector V= 50; i want to full this vector randomly with 0 and 1. the '1' appears 10 times and the rest of the vector with zeros. how can i do that please
0 Comments
Accepted Answer
John D'Errico
on 24 Apr 2019
Edited: John D'Errico
on 24 Apr 2019
nones = 10;
nv = 50;
V = zeros(1,nv);
V(randperm(nv,nones)) = 1;
3 Comments
John D'Errico
on 24 Apr 2019
I'm sorry. I cannot/will not keep on chasing totally new questions in the comments. That turns one question into an extended personal consulting session. If you have another question, then ask it. AS ANOTHER QUESTION.
More Answers (0)
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!