当前位置: 首页>>代码示例>>C++>>正文


C++ emlrtDestroyArray函数代码示例

本文整理汇总了C++中emlrtDestroyArray函数的典型用法代码示例。如果您正苦于以下问题:C++ emlrtDestroyArray函数的具体用法?C++ emlrtDestroyArray怎么用?C++ emlrtDestroyArray使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了emlrtDestroyArray函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: real_T

/*
 * Arguments    : const emlrtStack *sp
 *                const mxArray *u
 *                const emlrtMsgIdentifier *parentId
 * Return Type  : real_T (*)[16]
 */
static real_T (*j_emlrt_marshallIn(const emlrtStack *sp, const mxArray *u, const
  emlrtMsgIdentifier *parentId))[16]
{
  real_T (*y)[16];
  y = q_emlrt_marshallIn(sp, emlrtAlias(u), parentId);
  emlrtDestroyArray(&u);
  return y;
}
开发者ID:eryeden,项目名称:CG-Estimator,代码行数:14,代码来源:_coder_ekf_update_api.c

示例2: d_emlrt_marshallIn

static real_T d_emlrt_marshallIn(const mxArray *u, const emlrtMsgIdentifier
  *parentId)
{
  real_T y;
  y = f_emlrt_marshallIn(emlrtAlias(u), parentId);
  emlrtDestroyArray(&u);
  return y;
}
开发者ID:AliceB,项目名称:dMRI_Antipodal_Sampling_Schemes,代码行数:8,代码来源:nsht_legmat_api.c

示例3: b_emlrt_marshallIn

/*
 * Arguments    : const emlrtStack *sp
 *                const mxArray *u
 *                const emlrtMsgIdentifier *parentId
 * Return Type  : real_T
 */
static real_T b_emlrt_marshallIn(const emlrtStack *sp, const mxArray *u, const
  emlrtMsgIdentifier *parentId)
{
  real_T y;
  y = n_emlrt_marshallIn(sp, emlrtAlias(u), parentId);
  emlrtDestroyArray(&u);
  return y;
}
开发者ID:asgardkm,项目名称:DP_PMP,代码行数:14,代码来源:_coder_clcDP_olyHyb_tmp_api.c

示例4: b_emlrt_marshallIn

/*
 * Arguments    : const emlrtStack *sp
 *                const mxArray *u
 *                const emlrtMsgIdentifier *parentId
 * Return Type  : double
 */
static double b_emlrt_marshallIn(const emlrtStack *sp, const mxArray *u, const
  emlrtMsgIdentifier *parentId)
{
  double y;
  y = c_emlrt_marshallIn(sp, emlrtAlias(u), parentId);
  emlrtDestroyArray(&u);
  return y;
}
开发者ID:michille78,项目名称:program_xyz,代码行数:14,代码来源:_coder_test_api.c

示例5: c_emlrt_marshallIn

static void c_emlrt_marshallIn(const mxArray *updater, const char_T *identifier,
  emxArray_real_T *y)
{
  emlrtMsgIdentifier thisId;
  thisId.fIdentifier = identifier;
  thisId.fParent = NULL;
  d_emlrt_marshallIn(emlrtAlias(updater), &thisId, y);
  emlrtDestroyArray(&updater);
}
开发者ID:ganguli-lab,项目名称:Complex_Synapse,代码行数:9,代码来源:BWbetaNloop_api.c

示例6: b_emlrt_marshallIn

/* Function Definitions */
static int16_T b_emlrt_marshallIn(const emlrtStack *sp, const mxArray *u, const
  emlrtMsgIdentifier *parentId)
{
  int16_T y;
  emlrtCheckFiR2012b(sp, parentId, u, false, 0U, 0, eml_mx, b_eml_mx);
  y = c_emlrt_marshallIn(emlrtAlias(u));
  emlrtDestroyArray(&u);
  return y;
}
开发者ID:AliZeineddine93,项目名称:CIC_Filter_Study,代码行数:10,代码来源:_coder_cic_fixpt_api.c

示例7: h_emlrt_marshallIn

static creal_T h_emlrt_marshallIn(const mxArray *src, const emlrtMsgIdentifier
  *msgId)
{
  creal_T ret;
  emlrtCheckBuiltInR2012b(emlrtRootTLSGlobal, msgId, src, "double", TRUE, 0U, 0);
  emlrtImportArrayR2011b(src, &ret, 8, TRUE);
  emlrtDestroyArray(&src);
  return ret;
}
开发者ID:ParkedTom,项目名称:HPC-2014,代码行数:9,代码来源:julia_v4_1_api.c

示例8: m_emlrt_marshallIn

static void m_emlrt_marshallIn(const emlrtStack *sp, const mxArray *src, const
  emlrtMsgIdentifier *msgId, char_T ret[14])
{
  static const int32_T dims[2] = { 1, 14 };

  emlrtCheckBuiltInR2012b(sp, msgId, src, "char", false, 2U, dims);
  emlrtImportCharArrayR2015b(sp, src, ret, 14);
  emlrtDestroyArray(&src);
}
开发者ID:eryeden,项目名称:CG-Estimator,代码行数:9,代码来源:mpower.c

示例9: f_emlrt_marshallIn

static real_T f_emlrt_marshallIn(const mxArray *src, const emlrtMsgIdentifier
  *msgId)
{
  real_T ret;
  emlrtCheckBuiltInR2012b(emlrtRootTLSGlobal, msgId, src, "double", FALSE, 0U, 0);
  ret = *(real_T *)mxGetData(src);
  emlrtDestroyArray(&src);
  return ret;
}
开发者ID:AliceB,项目名称:dMRI_Antipodal_Sampling_Schemes,代码行数:9,代码来源:nsht_legmat_api.c

示例10: emlrt_marshallIn

static void emlrt_marshallIn(const mxArray *thetas, const char_T *identifier,
  emxArray_real_T *y)
{
  emlrtMsgIdentifier thisId;
  thisId.fIdentifier = identifier;
  thisId.fParent = NULL;
  b_emlrt_marshallIn(emlrtAlias(thetas), &thisId, y);
  emlrtDestroyArray(&thetas);
}
开发者ID:AliceB,项目名称:dMRI_Antipodal_Sampling_Schemes,代码行数:9,代码来源:nsht_legmat_api.c

示例11: n_emlrt_marshallIn

static real_T n_emlrt_marshallIn(const emlrtStack *sp, const mxArray *src, const
  emlrtMsgIdentifier *msgId)
{
  real_T ret;
  emlrtCheckBuiltInR2012b(sp, msgId, src, "double", false, 0U, 0);
  ret = *(real_T *)mxGetData(src);
  emlrtDestroyArray(&src);
  return ret;
}
开发者ID:ofirENS,项目名称:TestFiles,代码行数:9,代码来源:_coder_TestBEM_mex_api.c

示例12: i_emlrt_marshallIn

static void i_emlrt_marshallIn(const emlrtStack *sp, const mxArray *r, const
  char_T *identifier, emxArray_real_T *y)
{
  emlrtMsgIdentifier thisId;
  thisId.fIdentifier = identifier;
  thisId.fParent = NULL;
  j_emlrt_marshallIn(sp, emlrtAlias(r), &thisId, y);
  emlrtDestroyArray(&r);
}
开发者ID:ofirENS,项目名称:TestFiles,代码行数:9,代码来源:_coder_TestBEM_mex_api.c

示例13: g_emlrt_marshallIn

/*
 * Arguments    : const emlrtStack *sp
 *                const mxArray *FZG
 *                const char_T *identifier
 *                struct0_T *y
 * Return Type  : void
 */
static void g_emlrt_marshallIn(const emlrtStack *sp, const mxArray *FZG, const
  char_T *identifier, struct0_T *y)
{
  emlrtMsgIdentifier thisId;
  thisId.fIdentifier = identifier;
  thisId.fParent = NULL;
  h_emlrt_marshallIn(sp, emlrtAlias(FZG), &thisId, y);
  emlrtDestroyArray(&FZG);
}
开发者ID:asgardkm,项目名称:DP_PMP,代码行数:16,代码来源:_coder_clcDP_olyHyb_tmp_api.c

示例14: e_emlrt_marshallIn

/*
 * Arguments    : const emlrtStack *sp
 *                const mxArray *engKinMat_engKinInx_wayInx
 *                const char_T *identifier
 *                emxArray_real_T *y
 * Return Type  : void
 */
static void e_emlrt_marshallIn(const emlrtStack *sp, const mxArray
  *engKinMat_engKinInx_wayInx, const char_T *identifier, emxArray_real_T *y)
{
  emlrtMsgIdentifier thisId;
  thisId.fIdentifier = identifier;
  thisId.fParent = NULL;
  f_emlrt_marshallIn(sp, emlrtAlias(engKinMat_engKinInx_wayInx), &thisId, y);
  emlrtDestroyArray(&engKinMat_engKinInx_wayInx);
}
开发者ID:asgardkm,项目名称:DP_PMP,代码行数:16,代码来源:_coder_clcOptTrj_tmp_api.c

示例15: e_emlrt_marshallIn

static void e_emlrt_marshallIn(const emlrtStack *sp, const mxArray *timePoints,
  const char_T *identifier, emxArray_real_T *y)
{
  emlrtMsgIdentifier thisId;
  thisId.fIdentifier = identifier;
  thisId.fParent = NULL;
  f_emlrt_marshallIn(sp, emlrtAlias(timePoints), &thisId, y);
  emlrtDestroyArray(&timePoints);
}
开发者ID:ofirENS,项目名称:TestFiles,代码行数:9,代码来源:_coder_TestBEM_mex_api.c


注:本文中的emlrtDestroyArray函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。