showing error in this line ? please do help us to get the output ?
Mostrar comentarios más antiguos
m1=max(max(A(i:i+95,j:j+127)));
1 comentario
Respuestas (1)
Star Strider
el 26 de En. de 2016
You have to be certain your ‘A’ matrix is large enough so that your addressing does not access elements outside its index range.
This works:
A = randi(99, 200);
i = 10;
j = 20;
m1=max(max(A(i:i+95,j:j+127)));
Categorías
Más información sobre Matrix Indexing en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!