Find minimum and maximum value from a matrix for a specific interval
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Chaudhary P Patel
el 20 de Sept. de 2022
Comentada: Chaudhary P Patel
el 20 de Sept. de 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 comentarios
Respuesta aceptada
Walter Roberson
el 20 de Sept. de 2022
rows = [2,5,8,11,14,17,20,23,27];
[minima, maxima] = bounds(YourMatrix(rows,:), 2);
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!