File: diag.h

    1   /*
    2    * diag.h
    3    *
    4    * Code generation for function 'diag'
    5    *
    6    */
    7   
    8   #ifndef DIAG_H
    9   #define DIAG_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 diag(const real_T v_data[], const int32_T v_size[2], real_T d_data[],
   26                    int32_T d_size[2]);
   27   
   28   #endif
   29   
   30   /* End of code generation (diag.h) */
   31