Effacer les filtres
Effacer les filtres

Find minimum and maximum value from a matrix for a specific interval

2 vues (au cours des 30 derniers jours)
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.

Réponse acceptée

Walter Roberson
Walter Roberson le 20 Sep 2022
rows = [2,5,8,11,14,17,20,23,27];
[minima, maxima] = bounds(YourMatrix(rows,:), 2);
  1 commentaire
Chaudhary P Patel
Chaudhary P Patel le 20 Sep 2022
I want to find the maximum minimum from the comparision of all the specified row with all column at a time.
can you please explain is command with a example.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by