While loop not performing

2 views (last 30 days)
Uendi Hajderaj
Uendi Hajderaj on 15 Feb 2019
Commented: Luigi Mario on 27 Feb 2019
Hi,
I have the following code. My aim is to make each and every entry of vector a zero, i.e. to make it a vector of zeros. I am doing this by using a while loop and choosing a random number within a's dimensions and making that entry 0. It should do this until all entries become zero and it should, in addition, count the times it took to make the vector zero.
My problem is that the loop doesn't work at all. How can I make it better, or where is the mistake I cannot see here?Hi,
I have the following code. My aim is to make each and every entry of vector a zero, i.e. to make it a vector of zeros. I am doing this by using a while loop and choosing a random number within a's dimensions and making that entry 0. It should do this until all entries become zero and it should, in addition, count the times it took to make the vector zero.
My problem is that the loop doesn't work at all. How can I make it better, or where is the mistake I cannot see here?
a=ones(1,10);
while(a==zeros(1,10))
N=1;
x=randi([1 10])
a(x)=0
N=N+1;
end
a
end

Accepted Answer

Walter Roberson
Walter Roberson on 15 Feb 2019
When you use if or while with a condition, then MATLAB only considers the condition to be true if all the values being tested are non-zero.
You initialize a to a vector of 1's, and test whether that vector == 0. None of the entries are equal to 0, so not all of the values are true (non-zero), so the while ends immediately.
You could test
while any(a)
which would be equivalent to testing
while any(a ~= 0)
  4 Comments
Uendi Hajderaj
Uendi Hajderaj on 16 Feb 2019
Edited: Uendi Hajderaj on 16 Feb 2019
I now understand the meaning behind the code and considering the output it makes perfect sense. But I thought the while loop should work in the sense that it should perform the task given to it after the condition, until the condition is satisfied. Since this clearly doesn't work, how is then possible to turn a vector of ones to a vactor of zeros, by counting the number of times it takes for it it become a vector of zeros?
Walter Roberson
Walter Roberson on 16 Feb 2019
N = 10;
a = ones(1, N);
C = 0;
while any(a ~= 0)
C = C + 1;
idx = randi([1 N]);
a(idx) = 0;
end
fprintf('Needed %d iterations\n', C);

Sign in to comment.

More Answers (1)

Uendi Hajderaj
Uendi Hajderaj on 16 Feb 2019
Edited: Uendi Hajderaj on 16 Feb 2019
Ok I found another way how to do this and it works perfectly fine. It does in the end return a vector of zeros after successfully turning all of its entries from 1 to 0.
Now what I'm struggling with, is finding a way to count the times, it took for it to make all the entries zero. Is there any way I can do this, like for example as a sum of all the times one of the entries of vector a has changed?
a=ones(1,10);
for M=1:10
while (a(M)~=0);
x=randi([1 10])
a(x)=0
end
end
a
  1 Comment
Luigi Mario
Luigi Mario on 27 Feb 2019
You already know the answer. Just add another array.
a=ones(1,10);
timesItTakes = zeros(1,10);
for M=1:10
while (a(M)~=0);
x=randi([1 10])
a(x)=0
timesItTakes(x) = timesItTakes(x) + 1
end
end
a

Sign in to comment.

Categories

Find more on Operating on Diagonal Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!