私はcでmatlabのS-functionに取り組んでいますが、次のコードがクラッシュしています.cの基本は非常に貧弱です:)
//
static double a=0;
//
static void mdlOutputs(SimStruct *S, int_T tid)
{
const real_T *u = ssGetInputPortRealSignal(S,0);
a=*u; //this line creates the problem
}
//