1
2
3
4
5
6
7
8
9
10
11
12
|
/* -*-c-*- Put emacs into c-mode
* <mtt_model_name>_sfun_ae.c:
* Matlab mex algebraic equations for <mtt_model_name>
*/
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <mex.h>
#include "sfun_debug.h"
#include "useful-functions.hh"
#include "<mtt_model_name>_def.h"
|
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* -*-c-*- Put emacs into c-mode
* <mtt_model_name>_sfun_ae.c:
* Matlab mex algebraic equations for <mtt_model_name>
*/
#if <have_algebraic_equations> /* have_algebraic_equations */
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <mex.h>
#include "sfun_debug.h"
#include "useful-functions.hh"
#include "<mtt_model_name>_def.h"
|
112
113
114
115
116
117
118
|
PRINT_LEAVE;
}
#ifdef __cplusplus
}
#endif
|
>
>
|
114
115
116
117
118
119
120
121
122
|
PRINT_LEAVE;
}
#ifdef __cplusplus
}
#endif
#endif /* have_algebraic_equations */
|