ScriptIntrinsicBLAS.DSPR2 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
DSPR2 执行对称排名 2 运算 A:= alphaxyT + alphayxT + A
[Android.Runtime.Register("DSPR2", "(IDLandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void DSPR2 (int Uplo, double alpha, Android.Renderscripts.Allocation? X, int incX, Android.Renderscripts.Allocation? Y, int incY, Android.Renderscripts.Allocation? Ap);
[<Android.Runtime.Register("DSPR2", "(IDLandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.DSPR2 : int * double * Android.Renderscripts.Allocation * int * Android.Renderscripts.Allocation * int * Android.Renderscripts.Allocation -> unit
参数
- Uplo
- Int32
指定是否以打包形式提供上半角或下三角部分。
- alpha
- Double
标量 alpha。
输入分配包含矢量 x,支持的元素类型 Element#F64
。
- incX
- Int32
矢量 x 的元素的增量必须大于零。
输入分配包含矢量 y,支持的元素类型 Element#F64
。
- incY
- Int32
矢量 y 的元素的增量必须大于零。
- Ap
- Allocation
输入分配包含矩阵 A,支持的元素类型 Element#F64
。
- 属性
注解
DSPR2 执行对称排名 2 运算 A := alpha*x*y**T + alpha*y*x**T + A
详细信息: http://www.netlib.org/lapack/explore-html/dd/d9e/dspr2_8f.html
注意:对于 N*N 矩阵,输入分配应该是大小 dimX = N*(N+1)/2 的 1D 分配,以下子例程可以演示如何将 UPPER 三角矩阵“a”转换为打包矩阵“b”。 k = 0 for i in range(0, n): for j in range(i, n): b[k++] = a[i, j]
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。