How to ensure that the value in my mxn matrix does not exceed certain value?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
How to ensure that the value in my mxn matrix does not exceed certain value?
Let say I have a 5x5 matrix, I wish to check the one in middle whether it exceed certain value....
If the value exceed then I will loop back to another condition.
0 comentarios
Respuestas (1)
KSSV
el 24 de Jun. de 2020
for i = 1:2
for j = 1:2
A(i,j) = input("enter value:") ;
while A(i,j) > 2
A(i,j) = input("enter value, less than 2:") ;
end
end
end
0 comentarios
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!