File: power.h1 /* 2 * power.h 3 * 4 * Code generation for function 'power' 5 * 6 */ 7 8 #ifndef POWER_H 9 #define POWER_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 b_power(const emlrtStack *sp, const real_T a_data[], const int32_T 26 a_size[1], real_T y_data[], int32_T y_size[1]); 27 extern void c_power(const emlrtStack *sp, const emxArray_real_T *a, 28 emxArray_real_T *y); 29 extern void power(const real_T a[48], real_T y[48]); 30 31 #endif 32 33 /* End of code generation (power.h) */ 34 |