Main Content

for

지정된 횟수를 반복하기 위한 for 루프

구문

for index = values
   statements
end

설명

예제

for index = values, statements, end는 지정된 횟수만큼 루프의 명령문 그룹을 실행합니다.

fi 객체가 포함된 colon, : 연산이 인덱스로 사용되는 경우 fi 객체는 정수여야 합니다.

자세한 내용은 MATLAB® for 도움말 페이지를 참조하십시오.

예제

모두 축소

fi 객체를 for 루프의 인덱스로 사용합니다.

a = fi(1,0,8,0);
b = fi(2,0,8,0);
c = fi(10,0,8,0);

for x = a:b:c
 x
end
x = 
     1

          DataTypeMode: Fixed-point: binary point scaling
            Signedness: Unsigned
            WordLength: 8
        FractionLength: 0
x = 
     3

          DataTypeMode: Fixed-point: binary point scaling
            Signedness: Unsigned
            WordLength: 8
        FractionLength: 0
x = 
     5

          DataTypeMode: Fixed-point: binary point scaling
            Signedness: Unsigned
            WordLength: 8
        FractionLength: 0
x = 
     7

          DataTypeMode: Fixed-point: binary point scaling
            Signedness: Unsigned
            WordLength: 8
        FractionLength: 0
x = 
     9

          DataTypeMode: Fixed-point: binary point scaling
            Signedness: Unsigned
            WordLength: 8
        FractionLength: 0

확장 기능

C/C++ 코드 생성
MATLAB® Coder™를 사용하여 C 코드나 C++ 코드를 생성할 수 있습니다.

버전 내역

R2014b에 개발됨