Main Content

이 번역 페이지는 최신 내용을 담고 있지 않습니다. 최신 내용을 영문으로 보려면 여기를 클릭하십시오.

함수 정의

코드 가속화를 위한 정의 및 호출

함수

coder.extrinsic함수를 외재적 함수로 선언하고 MATLAB에서 실행
coder.ignoreConst표현식의 상수 값을 사용한 함수 특수화 금지
coder.mustBeConstValidate that value is a compile-time constant (R2023b 이후)
coder.unrollUnroll for-loop by making a copy of the loop body for each loop iteration
coder.sameSizeBinaryOpApply element-wise binary operations without implicit expansion (R2021b 이후)
coder.noImplicitExpansionInFunctionDisable implicit expansion within the specified function in the generated code (R2021b 이후)
coder.readRead data files at run time in generated code (R2023a 이후)
coder.writeCreate data files that the generated code reads at run time (R2023a 이후)

도움말 항목

문제 해결

for 루프에서 varargin 또는 varargout에 대한 인덱스가 상수가 아닌 경우

코드 생성기가 varargin 또는 varargout에 대한 인덱스 값을 확인할 수 없는 경우 루프 풀기를 강제로 실행합니다.

Output Variable Must Be Assigned Before Run-Time Recursive Call

Troubleshoot output variable assignment for run-time recursion.

Compile-Time Recursion Limit Reached

Troubleshoot compile-time recursion limit error.