00001 #include "mex.h"
00002 #include <math.h>
00003 #include "mexhead.h"
00004 #include "Doc/znan_docstring.h"
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #define NARGIN_MIN 1
00034 #define NARGIN_MAX 3
00035 #define NARGOUT_MIN 0
00036 #define NARGOUT_MAX 1
00037
00038 #define ARG_X 0
00039 #define ARG_val 1
00040 #define ARG_pat 2
00041
00042 #define ARG_Y 0
00043
00044 static const char *progname = "znan";
00045 #define PROGNAME znan
00046 static const char *in_specs[NARGIN_MAX] = {
00047 "RA",
00048 "RS(1)",
00049 "RA" };
00050 static const char *in_names[NARGIN_MAX] = {
00051 "x",
00052 "val",
00053 "pattern" };
00054 static const char *out_names[NARGOUT_MAX] = {
00055 "y" };
00056
00057
00058
00059
00060
00061
00062 static
00063 void
00064 znan(double *y, double *x, double val, double *pat, mwSize N)
00065
00066 {
00067 mwSize i;
00068
00069 for (i = 0; i < N; i++, x++, y++, pat++)
00070 if (isnan(*pat))
00071 *y = val;
00072 else
00073 *y = *x;
00074 }
00075
00076
00077
00078
00079
00080 #ifdef StaticP
00081 StaticP
00082 #endif
00083 void
00084 mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
00085 {
00086 char errstr[1024];
00087 double lo, hi;
00088
00089
00090 if (nrhs < 0) {
00091 plhs[0] = mxt_PackSignature((mxt_Signature) (-nrhs),
00092 NARGIN_MIN, NARGIN_MAX,
00093 NARGOUT_MIN, NARGOUT_MAX,
00094 in_names, in_specs, out_names, docstring);
00095 return;
00096 }
00097
00098 if ((nrhs < NARGIN_MIN) || (nrhs > NARGIN_MAX))
00099 mexErrMsgTxt((snprintf(errstr, sizeof(errstr),
00100 "%s: Expect %d <= input args <= %d",
00101 progname, NARGIN_MIN, NARGIN_MAX), errstr));
00102 if ((nlhs < NARGOUT_MIN) || (nlhs > NARGOUT_MAX))
00103 mexErrMsgTxt((snprintf(errstr, sizeof(errstr),
00104 "%s: Expect %d <= output args <= %d",
00105 progname, NARGOUT_MIN, NARGOUT_MAX), errstr));
00106 mexargparse(nrhs, prhs, in_names, in_specs, NULL, progname);
00107
00108
00109 if (nrhs > ARG_pat) {
00110 start_sizechecking();
00111 sizeinit(prhs[ARG_pat]);
00112 sizeagree(prhs[ARG_X]);
00113 sizecheck_msg(progname, in_names, ARG_pat);
00114 }
00115
00116
00117 plhs[ARG_Y] =
00118 mxCreateNumericArray(mxGetNumberOfDimensions(prhs[ARG_X]),
00119 mxGetDimensions(prhs[ARG_X]),
00120 mxDOUBLE_CLASS,
00121 mxREAL);
00122 if (plhs[ARG_Y] == NULL)
00123 mexErrMsgTxt((snprintf(errstr, sizeof(errstr),
00124 "%s: Could not allocate space for result",
00125 progname), errstr));
00126 getrange(plhs[ARG_X], &lo, &hi);
00127 if (lo > 0) lo = 0;
00128 if (hi < 0) hi = 0;
00129 setrange(plhs[ARG_Y], lo, hi);
00130
00131
00132 znan(mxGetPr(plhs[ARG_Y]),
00133 mxGetPr(prhs[ARG_X]),
00134 nrhs > ARG_val ?
00135 mxGetScalar(prhs[ARG_val]) : 0.0,
00136 nrhs > ARG_pat ?
00137 mxGetPr(prhs[ARG_pat]) : mxGetPr(prhs[ARG_X]),
00138 mxGetNumberOfElements(prhs[ARG_X])
00139 );
00140 }
00141
00142
00143
00144 #ifdef MEX2C_TAIL_HOOK
00145 #include "mex2c_tail.h"
00146 #endif
00147