ScriptIntrinsicBLAS.SGEMV 方法

定义

SGEMV 执行矩阵向量运算之一 y := alphaAx + betay 或 y := alphaA**Tx + betay

[Android.Runtime.Register("SGEMV", "(IFLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;IFLandroid/renderscript/Allocation;I)V", "", ApiSince=23)]
public void SGEMV (int TransA, float alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? X, int incX, float beta, Android.Renderscripts.Allocation? Y, int incY);
[<Android.Runtime.Register("SGEMV", "(IFLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;IFLandroid/renderscript/Allocation;I)V", "", ApiSince=23)>]
member this.SGEMV : int * single * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * int * single * Android.Renderscripts.Allocation * int -> unit

参数

TransA
Int32

应用于矩阵 A 的转置的类型。

alpha
Single

标量 alpha。

A
Allocation

输入分配包含矩阵 A,支持的元素类型 Element#F32

X
Allocation

输入分配包含矢量 x,支持的元素类型 Element#F32

incX
Int32

矢量 x 的元素的增量必须大于零。

beta
Single

标量 beta 版。

Y
Allocation

输入分配包含矢量 y,支持的元素类型 Element#F32

incY
Int32

矢量 y 的元素的增量必须大于零。

属性

注解

SGEMV 执行矩阵向量运算之一 y := alpha*A*x + beta*y 或 y := alpha*A**T*x + beta*y

详细信息: http://www.netlib.org/lapack/explore-html/db/d58/sgemv_8f.html

适用于 . 的 android.renderscript.ScriptIntrinsicBLAS.SGEMV(int, float, android.renderscript.Allocation, android.renderscript.Allocation, int, float, android.renderscript.Allocation, int)Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于