Differences From Artifact [313e83ce42]:
- File
mttroot/mtt/lib/rep/sfun_rep/sfun.c.tmpl
— part of check-in
[cddb779670]
at
2003-03-10 12:07:25
on branch origin/master
— Tracking Matlab's ever-changing API.
Updated to Matlab 6.5:
- removed mxSetName
- mexGetArray -> mexGetVariable
- mexPutArray -> mexPutVariable (user: geraint@users.sourceforge.net, size: 6699) [annotate] [blame] [check-ins using] [more...]
To Artifact [f43285b0f1]:
- File mtt/lib/rep/sfun_rep/sfun.c.tmpl — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 6803) [annotate] [blame] [check-ins using] [more...]
- File mttroot/mtt/lib/rep/sfun_rep/sfun.c.tmpl — part of check-in [f40162ac3d] at 2004-02-23 21:47:50 on branch origin/master — [ 898904 ] Remove mex dependency for RTW (user: geraint@users.sourceforge.net, size: 6803) [annotate] [blame] [check-ins using]
| ︙ | |||
109 110 111 112 113 114 115 116 117 118 119 120 121 122 | 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | + |
}
PRINT_LEAVE;
}
static void
update_inputs_from_solver (void)
{
#if <have_algebraic_equations> /* have_algebraic_equations */
mxArray *MTT_MATLAB_P;
mxArray *MTT_MATLAB_T;
mxArray *MTT_MATLAB_U;
mxArray *MTT_MATLAB_Ui;
mxArray *MTT_MATLAB_X;
double *p;
|
| ︙ | |||
174 175 176 177 178 179 180 181 182 183 184 185 186 187 | 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | + + |
mxDestroyArray (MTT_MATLAB_P);
mxDestroyArray (MTT_MATLAB_T);
mxDestroyArray (MTT_MATLAB_U);
mxDestroyArray (MTT_MATLAB_Ui);
mxDestroyArray (MTT_MATLAB_X);
PRINT_LEAVE;
#endif /* have_algebraic_equations */
;
}
static void
update_simtime_from_simulink (SimStruct *S)
{
PRINT_ENTER;
mttt = ssGetT (S);
|
| ︙ |