如何设置这个数组的大小c ++

时间:2016-06-14 19:37:56

标签: c++ matlab pointers multidimensional-array

我从matlab编码器生成了c ++代码,但我不确定如何设置数组的大小正确。

static emxArray_real_T *argInit_d7351x5_real_T()
{
  emxArray_real_T *result;
  static int iv0[2] = { 2, 5 };                                                  

  int idx0;
  int idx1;

  // Set the size of the array.
  // Change this size to the value that the application requires.
  result = emxCreateND_real_T(2, *(int (*)[2])&iv0[0]);

  // Loop over the array to initialize each element.
  for (idx0 = 0; idx0 < result->size[0UL]; idx0++) {
    for (idx1 = 0; idx1 < 5; idx1++) {
      // Set the value of the array element.
      // Change this value to the value that the application requires.
      result->data[idx0 + result->size[0] * idx1] = argInit_real_T();
    }
  }

  return result;
}

//
// Arguments    : void
// Return Type  : double
//
static double argInit_real_T()
{
  return 1.0;
}

我需要一个10x5矩阵填充来自argInit_real_T函数的数据,是不是将iv0 [0]改为10? int(*)[2]命令如何工作?

struct emxArray_real_T
{
  double *data;
  int *size;
  int allocatedSize;
  int numDimensions;
  boolean_T canFreeData;
};

emxArray_real_T *emxCreateND_real_T(int numDimensions, int *size)
{
  emxArray_real_T *emx;
  int numEl;
  int i;
  emxInit_real_T(&emx, numDimensions);
  numEl = 1;
  for (i = 0; i < numDimensions; i++) {
    numEl *= size[i];
    emx->size[i] = size[i];
  }

  emx->data = (double *)calloc((unsigned int)numEl, sizeof(double));
  emx->numDimensions = numDimensions;
  emx->allocatedSize = numEl;
  return emx;
}

1 个答案:

答案 0 :(得分:3)

int(*)[2]不是命令 - 它声明了一个指向长度为2的int数组的指针。

现在让我们来看看:*(int (*)[2])&iv0[0]。首先,取iv0的第一个元素的地址,类型为int*,将其转换为指向int[2]的指针(即int(*)[2]),然后再次取消引用,返回int[2]。传递给int*时,会再次提升为emxCreateND_real_T

实际上,如果你直接通过iv0就会发生同样的事情......

result = emxCreateND_real_T(2, iv0);

是的,对于10x5矩阵,您将初始化static int iv0[] = { 10, 5 };