// // Academic License - for use in teaching, academic research, and meeting // course requirements at degree granting institutions only. Not for // government, commercial, or other organizational use. // // sum.h // // Code generation for function 'sum' // #ifndef SUM_H #define SUM_H // Include files #include "rtwtypes.h" #include "coder_array.h" #include #include // Function Declarations namespace coder { void sum(const ::coder::array &x, float y_data[], int y_size[2]); } #endif // End of code generation (sum.h)