Main Content
mexWarnMsgIdAndTxt (C and Fortran)
Warning message with identifier
C Syntax
#include "mex.h" void mexWarnMsgIdAndTxt(const char *warningid, const char *warningmsg, ...);
Fortran Syntax
#include "fintrf.h" subroutine mexWarnMsgIdAndTxt(warningid, warningmsg) character*(*) warningid, warningmsg
Description
The mexWarnMsgIdAndTxt
function writes a warning message to the
MATLAB® command prompt. The warnings displayed are the same as warnings issued by the
MATLAB
warning
function. To control the information displayed or suppressed,
call the warning
function with the desired settings before calling your
MEX file.
Unlike mexErrMsgIdAndTxt
, calling
mexWarnMsgIdAndTxt
does not terminate the MEX file.