How do I randomly select a zero in a matrix and replace it with a value from another matrix?
Show older comments
I have a 52x3 zero matrix and a 1x15 matrix. A=[40 46 9 11 9 45 10 14 12 2 1 8 41 25 31];
I am trying to select the (1+n) value in A; (where n=0 for the first iteration and iterations<15) and randomly replace a zero in the zero matrix with this value.
Accepted Answer
More Answers (1)
Youssef Khmou
on 10 Feb 2015
The description is not complete, because localization of position in zero matrix requires two indexes x and y try :
B=zeros(52,3);
for n=0:15
xIndex=ceil(15*rand);
yIndex=ceil(3*rand);
B(xIndex,yIndex)=A(xIndex);
end
The question is why we chose the expression for yIndex and xIndex? and is the program complete ?
Categories
Find more on Matrix Indexing 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!