想象一下我们有
var a = new Float64Array([1, 2, 3]),
b = new Float64Array([4, 5]);
var c = new Float64Array(a.length + b.length);
现在我想将a
和b
合并到c
。我编写了一个C ++ BLAS绑定来复制两个双精度/单精度数组之间的数据。事实是,这个绑定没有offset
属性:
void cblas_dcopy(int n, const double *x, const int inc_x, const double *y, const int inc_y);
我可以获得指向c
内存空间偏移的子阵列吗?在JavaScript中调用以下内容:
// copy first to result, works
cblas_dcopy(3, a, 1, c, 1);
// does not work because slice() returns a copy
cblas_dcopy(2, b, 1, c.slice(a.length), 1);
// now how would I copy to c at offset b.length?
答案 0 :(得分:0)
如果没有C ++绑定,您实际上可以轻松完成此任务:
var a = new Float64Array([1, 2, 3]);
var b = new Float64Array([4, 5]);
var c = new Float64Array(a.length + b.length);
c.set(a, 0);
c.set(b, a.length);
要按照您的要求获取子阵列,请尝试使用typedarray.subarray([begin[, end]])
。