Using a While loop to determine number greater than a constant

2 Ansichten (letzte 30 Tage)
Lena Weisman
Lena Weisman am 11 Mär. 2019
Kommentiert: Rik am 14 Mär. 2019
I have to consider the following matrix of values. X = [15, 53, 27, 32, 25, 23] and use a while loop to determine the number of values greater than 24. (Use a counter).
This is what I have any help would be greatly appreciated!
clc;
clear all;
X=[15,53,27,32,25,23];
Y=0;
while X>24
Y=Y+1;
end
fprintf('Values over 24 in the Matrix are: %i \n',Y)
  3 Kommentare
Lena Weisman
Lena Weisman am 11 Mär. 2019
Thanks! I have to write the code like this per a professors request which is also the reason for the while loop. The problem is that I am getting an output of 0 when the answer should be 4.
Rik
Rik am 14 Mär. 2019
Did my suggestions help you solve the issue? If not, feel free to comment with any further questions.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Rik
Rik am 11 Mär. 2019
I'm a bit hesitant to provide you with a complete working solution, since you mention it is homework. I will give you some advice in addition to my first comment:
Use a counter to check if you still have to check the next value in your vector (in your while condition). Use a second counter to keep track of values greater than your threshold.
What while X>24 does is to check the entire vector X against 24, and then that logical vector is used as the criterion. I can never remember what Matlab does in these cases, nor do I need to. You should avoid using an entire vector as a test. Always use the any or all functions to convert them to a scalar. You will (almost) never mean to use a vector as a conditional.
In your case, the while loop immediately exits, which results in the output answer being 0. If Matlab would enter the loop, it would continue looping, since the criterion is not affected by the loop contents.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by