为什么我得到数组下标的无效类型 float[int]?
Why am i getting invalid types float[int] for array subscript?
所以我查看了 Whosebug 上的其他问题,这些问题似乎描述了同样的问题,但这些案例中的每一个问题似乎都是错误的参考,例如该对象不是数组。我想我已经正确地引用了我的数组,但今天是我第一天使用 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
您将线性数组作为函数的参数传递,但您却将其用作二维数组,这是不可能的。
通过后,arr
只能像arr[i]
那样使用,不能像arr[i][j]
那样使用。
所以我查看了 Whosebug 上的其他问题,这些问题似乎描述了同样的问题,但这些案例中的每一个问题似乎都是错误的参考,例如该对象不是数组。我想我已经正确地引用了我的数组,但今天是我第一天使用 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
您将线性数组作为函数的参数传递,但您却将其用作二维数组,这是不可能的。
通过后,arr
只能像arr[i]
那样使用,不能像arr[i][j]
那样使用。