File: wind_initialize.c1 /* 2 * wind_initialize.c 3 * 4 * Code generation for function 'wind_initialize' 5 * 6 */ 7 8 /* Include files */ 9 #include "rt_nonfinite.h" 10 #include "wind.h" 11 #include "wind_initialize.h" 12 #include "_coder_wind_mex.h" 13 #include "wind_data.h" 14 15 /* Function Declarations */ 16 static void wind_once(void); 17 18 /* Function Definitions */ 19 static void wind_once(void) 20 { 21 /* Allocate instance data */ 22 covrtAllocateInstanceData(&emlrtCoverageInstance); 23 24 /* Initialize Coverage Information */ 25 covrtScriptInit(&emlrtCoverageInstance, 26 "E:\\micro array project\\Microphone Array\\beamform test\\wind.m", 27 0, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0); 28 29 /* Initialize Function Information */ 30 covrtFcnInit(&emlrtCoverageInstance, 0, 0, "wind", 0, -1, 351); 31 32 /* Initialize Basic Block Information */ 33 covrtBasicBlockInit(&emlrtCoverageInstance, 0, 2, 197, -1, 328); 34 covrtBasicBlockInit(&emlrtCoverageInstance, 0, 1, 177, -1, 190); 35 covrtBasicBlockInit(&emlrtCoverageInstance, 0, 0, 46, -1, 67); 36 37 /* Initialize If Information */ 38 covrtIfInit(&emlrtCoverageInstance, 0, 0, 101, 125, -1, 196); 39 40 /* Initialize MCDC Information */ 41 /* Initialize For Information */ 42 /* Initialize While Information */ 43 /* Initialize Switch Information */ 44 /* Start callback for coverage engine */ 45 covrtScriptStart(&emlrtCoverageInstance, 0U); 46 } 47 48 void wind_initialize(void) 49 { 50 emlrtStack st = { NULL, NULL, NULL }; 51 52 mexFunctionCreateRootTLS(); 53 emlrtBreakCheckR2012bFlagVar = emlrtGetBreakCheckFlagAddressR2012b(); 54 st.tls = emlrtRootTLSGlobal; 55 emlrtClearAllocCountR2012b(&st, false, 0U, 0); 56 emlrtEnterRtStackR2012b(&st); 57 if (emlrtFirstTimeR2012b(emlrtRootTLSGlobal)) { 58 wind_once(); 59 } 60 } 61 62 /* End of code generation (wind_initialize.c) */ 63 |