File: mpower.c1 /* 2 * mpower.c 3 * 4 * Code generation for function 'mpower' 5 * 6 */ 7 8 /* Include files */ 9 #include "rt_nonfinite.h" 10 #include "gjbf.h" 11 #include "mpower.h" 12 #include "blas.h" 13 14 /* Function Definitions */ 15 real_T mpower(real_T a) 16 { 17 return a * a; 18 } 19 20 /* End of code generation (mpower.c) */ 21 |