How can I get randperm function to calculate assigned percentage and values?
Show older comments
I need to calculate that out of 1000000 elements, 75% should be randomly assigned a value of 1.5.
‘p = randperm(n)’ to specify which element is assigned with the properties of inclusions, where ‘n’ is the total number of elements (1000000), ‘p’ contains randomly ordered numbers from ‘1’ to ‘n’. Then, I need to assign the first ‘m’ elements with the value (1.5)
Out of 1000000 elements, 75% should be randomly assigned a value of 1.5.
‘n’=1000000
‘m’=1.5
Accepted Answer
More Answers (1)
Let's look at a slightly smaller problem.
A = zeros(10);
numElements = numel(A)
numDesired = ceil(0.25*numElements)
elementsToSet = randperm(numElements, numDesired)
A(elementsToSet) = 1
howManyNonzeroElements = nnz(A) % Should be numDesired
Alternately if you're working with sparse matrices you should look at sprand, sprandn, and sprandsym instead.
Categories
Find more on Random Number Generation 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!