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

조회 수: 1 (최근 30일)
mohammad
mohammad 2011년 9월 18일
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

채택된 답변

Andrei Bobrov
Andrei Bobrov 2011년 9월 18일
if all(yourmatrix(:,1)<1)
a=2;
end

추가 답변 (1개)

TAB
TAB 2011년 9월 18일
Better option than using for loop
if(~isempty(find(matrix(:,1)<1)))
a=2;
end

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by