Returning status of operation using mex
조회 수: 1 (최근 30일)
이전 댓글 표시
After i call to the mex function i written to do fopen, fred and fclose, how do i return the status to my mat file to check whether the file has been read or opened?
댓글 수: 0
답변 (1개)
Chirag Gupta
2011년 12월 16일
mex functions can return outputs:
void mexFunction(int nlhs, mxArray *plhs[], int nrhs,
const mxArray *prhs[]);
The nlhs : number of left hand arguments and plhs are the arguments you wish to return.
So you could return the status of the MAT file in plhs. You would call this function in MATLAB:
status = NameOfYourMexFunction(inputs);
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!