File: norm.h1 /* 2 * norm.h 3 * 4 * Code generation for function 'norm' 5 * 6 */ 7 8 #ifndef NORM_H 9 #define NORM_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 real_T norm(const real_T x_data[], const int32_T x_size[1]); 26 27 #ifdef __WATCOMC__ 28 29 #pragma aux norm value [8087]; 30 31 #endif 32 #endif 33 34 /* End of code generation (norm.h) */ 35 |