how can make for-loop in an if-end command for 'and(&) ' all arrays?

how can make for-loop and if-end command for all array of a matrix to be less than 2 value?(how can make for-loop in an if-end command for 'and(&)'?) foe example:
%matrix=defined matrix
how making loop for this:
if matrix(1,1)<1 && matrix(2,1)<1&& matrix(3,1)<1&& matrix(4,1)<1&& ... matrix(end,1)<1
a=2
end

 Respuesta aceptada

Más respuestas (1)

TAB
TAB el 18 de Sept. de 2011
Better option than using for loop
if(~isempty(find(matrix(:,1)<1)))
a=2;
end

Categorías

Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.

Preguntada:

el 18 de Sept. de 2011

Community Treasure Hunt

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

Start Hunting!

Translated by