Find minimum and maximum value from a matrix for a specific interval
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Chaudhary P Patel
il 20 Set 2022
Commentato: Chaudhary P Patel
il 20 Set 2022
I have a 30X100 size matrix, for which i want to find minimum and maximum value for row 2,5,8,11,14,17,20,23,27.
How can i find the minimum and maximu values from these rows.
0 Commenti
Risposta accettata
Walter Roberson
il 20 Set 2022
rows = [2,5,8,11,14,17,20,23,27];
[minima, maxima] = bounds(YourMatrix(rows,:), 2);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!