为什么我得到数组下标的无效类型FLOAT[INT]?

2022-06-06 00:00:00 arrays c++ rcpp

所以我研究了有关堆栈溢出的其他问题,这些问题似乎描述了相同的问题,但每种情况下的问题似乎都是错误的引用,例如对象不是数组。我想我已经正确地引用了我的数组,但今天是我做C++的第一天。有人能告诉我我做错了什么吗?

#include <Rcpp.h>
#include <cmath>
using namespace Rcpp;

// [[Rcpp::export]]
float convolute2D1(float arr[], int skew) {
  int m, n, l, j;
  float o;
  if (skew < 0) {
    m = 1;
    n = 2;
    skew = abs(skew);
  } else {
    m = 2;
    n = 1;
  }
  l = *(&arr + 1) - arr;
  l = l / 2 - skew;
  for(int i = 1; i <= l; i++) {
    j = i + skew;
    o = o + abs(arr[m][j] - arr[n][j]);
  }
  return o / l;
}

// END OF SCRIPT

我收到错误:

Line 31 invalid types 'float[int]' for array subscript
Line 31 invalid types 'float[int]' for array subscript
Line 41 expected ',' or '...' before 'SEXP'
Line 45 expected primary-expression before ']' token
line 46 'skewSEXP' was not declared in this scope
Line 47 expected primary-expression before ']' token

解决方案

您正在传递一个线性数组作为函数的参数,但您正在使用它,就好像它是一个2D数组,这是不可能的。

传递时,arr只能像arr[i],不能像arr[i][j]

相关文章