이 번역 페이지는 최신 내용을 담고 있지 않습니다. 최신 내용을 영문으로 보려면 여기를 클릭하십시오.
Fortran MEX API
이 라이브러리를 사용하여 Fortran MEX 파일 작업을 MATLAB® 환경에서 수행
Fortran 프로그램에서 subroutine
을 사용하는 것처럼 MEX 파일에서 mexFunction
을 사용할 수 있습니다. MATLAB 함수를 호출하려면 mexCallMATLAB
이나 mexEvalString
을 사용하십시오. MEX 파일과 MATLAB 작업 공간 간에 데이터를 전달하려면 mexGet*
함수와 mexSet*
함수를 사용하십시오.
mexFunction | Fortran MEX 함수에 대한 진입점 |
mexFunctionName | Name of current MEX function |
mexAtExit | Register function to call when MEX function clears or MATLAB terminates |
mexCallMATLAB | Call MATLAB function, user-defined function, or MEX file |
mexCallMATLABWithTrap | Call MATLAB function, user-defined function, or MEX file and capture error information |
mexEvalString | Execute MATLAB command in caller workspace |
mexEvalStringWithTrap | Execute MATLAB command in caller workspace and capture error information |
mexGetVariable | Copy of variable from specified workspace |
mexGetVariablePtr | Read-only pointer to variable from another workspace |
mexPutVariable | Array from MEX function into specified workspace |
mexPrintf | ANSI C PRINTF 스타일 출력 루틴 |
mexErrMsgIdAndTxt | Display error message with identifier and return to MATLAB prompt |
mexWarnMsgIdAndTxt | Warning message with identifier |
mexIsLocked | Determine if MEX file is locked |
mexLock | Prevent clearing MEX file from memory |
mexUnlock | Allow clearing MEX file from memory |
mexMakeArrayPersistent | Make array persist after MEX file completes |
mexMakeMemoryPersistent | Make memory allocated by MATLAB persist after MEX function completes |