Azzera filtri
Azzera filtri

Matlab help with coding

1 visualizzazione (ultimi 30 giorni)
ii
ii il 9 Ott 2019
Risposto: Stephen Deaton il 10 Ott 2019
What would be the code to compute the maximum value of column 1 that is less than 200?
The numbers are
1 5 600
2 5 155
8 5 234
3 5 100
  1 Commento
John D'Errico
John D'Errico il 10 Ott 2019
What have you tried? If nothing why not? For example, a loop with a test inside would suffice. Or you could do better, by first using a vectorized test to identify all elements less than 200, and THEN using max. So why not show what you would try, as this is a quite basic question.

Accedi per commentare.

Risposta accettata

Stephen Deaton
Stephen Deaton il 10 Ott 2019
A = [1 5 600
2 5 155
8 5 234
3 5 100];
maxval = max(A(A(:,1)<200,1))
If you want to change which column you search for, then change the 1's to the corresponding column number (e.g. maxval_col3 = max(A(A(:,3)<200,3))

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by