File: mclms.h1 /* 2 * mclms.h 3 * 4 * Code generation for function 'mclms' 5 * 6 */ 7 8 #ifndef MCLMS_H 9 #define MCLMS_H 10 11 /* Include files */ 12 #include <math.h> 13 #include <stdio.h> 14 #include <stdlib.h> 15 #include <string.h> 16 #include "mwmathutil.h" 17 #include "tmwtypes.h" 18 #include "mex.h" 19 #include "emlrt.h" 20 #include "covrt.h" 21 #include "rtwtypes.h" 22 #include "gjbf_types.h" 23 24 /* Function Declarations */ 25 extern void mclms(const emlrtStack *sp, const real_T z[14112], const real_T 26 b_data[], const int32_T b_size[1], real_T mu, real_T order, 27 real_T beta, emxArray_real_T *zp, const real_T mw1[320], const 28 real_T mcAdapt[14112], real_T K, real_T y_data[], int32_T 29 y_size[1], emxArray_real_T *mcWall); 30 31 #endif 32 33 /* End of code generation (mclms.h) */ 34 |