ScriptIntrinsicBLAS.ZHEMV 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
ZHEMV 执行矩阵向量运算 y := alphaAx + beta*y
[Android.Runtime.Register("ZHEMV", "(ILandroid/renderscript/Double2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;ILandroid/renderscript/Double2;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)]
public void ZHEMV (int Uplo, Android.Renderscripts.Double2? alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? X, int incX, Android.Renderscripts.Double2? beta, Android.Renderscripts.Allocation? Y, int incY);
[<Android.Runtime.Register("ZHEMV", "(ILandroid/renderscript/Double2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;ILandroid/renderscript/Double2;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)>]
member this.ZHEMV : int * Android.Renderscripts.Double2 * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * int * Android.Renderscripts.Double2 * Android.Renderscripts.Allocation * int -> unit
参数
- Uplo
- Int32
指定是要引用上角还是下三角部分。
- alpha
- Double2
标量 alpha。
输入分配包含矩阵 A,支持的元素类型 Element#F64_2
。
输入分配包含矢量 x,支持的元素类型 Element#F64_2
。
- incX
- Int32
矢量 x 的元素的增量必须大于零。
- beta
- Double2
标量 beta 版。
输入分配包含矢量 y,支持的元素类型 Element#F64_2
。
- incY
- Int32
矢量 y 的元素的增量必须大于零。
- 属性
注解
ZHEMV 执行矩阵向量运算 y := alpha*A*x + beta*y
详细信息: http://www.netlib.org/lapack/explore-html/d0/ddd/zhemv_8f.html
本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。