在blas中incx和incxy是什么意思?

  • 本文关键字:是什么 incxy blas incx blas
  • 更新时间 :
  • 英文 :


对于BLAS函数sdot (n, x, incx, y, incy).

incx指定x中元素的增量。

参数incx和incy的含义是什么?

sdot (n, x, incx, y, incy)将返回值

<我> x y (1) + x (1) * (1 + incx) *(1 +很小)+…+ x (1 + (n - 1) * incx) * y (1 + (n - 1) *很小)

请参考源代码http://netlib.sandia.gov/blas/sdot.f获取更多信息

我想是数组x和数组y的索引增量。

index_x += incx
index_y += incy

您通常将矩阵存储在单个数组中。比如说,如果您想在一个数组中乘以两个不同的列。您必须设置inciny以引用正确的元素。

相关内容

  • 没有找到相关文章

最新更新