File: round1.c

    1   /*
    2    * round1.c
    3    *
    4    * Code generation for function 'round1'
    5    *
    6    */
    7   
    8   /* Include files */
    9   #include "rt_nonfinite.h"
   10   #include "gjbf.h"
   11   #include "round1.h"
   12   #include "blas.h"
   13   
   14   /* Function Definitions */
   15   void b_round(real_T x[16])
   16   {
   17     int32_T k;
   18     for (k = 0; k < 16; k++) {
   19       x[k] = muDoubleScalarRound(x[k]);
   20     }
   21   }
   22   
   23   /* End of code generation (round1.c) */
   24