I have tried everything and I have no luck.

3 Ansichten (letzte 30 Tage)
Connor Maddox
Connor Maddox am 4 Okt. 2016
Bearbeitet: Connor Maddox am 5 Okt. 2016
fsadf
  1 Kommentar
James Tursa
James Tursa am 4 Okt. 2016
Please show what you have done so far, and ask specific questions about where you are having problems.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Sima
Sima am 4 Okt. 2016
What have you tried?
You don't need a loop in Matlab, length(find(X>10)) will give you the number of elements in X that are greater than 10.
disp will display whatever string you give it and mat2str will convert any matrix to a string.
  2 Kommentare
Connor Maddox
Connor Maddox am 4 Okt. 2016
I know I do not need a loop to complete the answer but that is what the assignment says to do.
Sima
Sima am 4 Okt. 2016
it's not as efficient but you can do:
larger_than_ten=0;
for i=1:length(X)
if (X(i)>10)
larger_than_ten=larger_than_ten+1;
end
end

Melden Sie sich an, um zu kommentieren.

Kategorien

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

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by