共用方式為


ScriptIntrinsicBLAS.CGEMV 方法

定義

CGEMV 會執行其中一個矩陣向量運算 y := alpha A x +beta y 或 y := alpha ATx + beta y 或 y := alpha*AHx + beta y

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

參數

TransA
Int32

套用至矩陣 A 的轉置類型。

alpha
Float2

純量Alpha。

A
Allocation

輸入配置包含矩陣 A,支援的元素類型 Element#F32_2

X
Allocation

輸入設定包含向量 x,支援的元素類型 Element#F32_2

incX
Int32

向量 x 元素的遞增必須大於零。

beta
Float2

純量 Beta。

Y
Allocation

輸入設定包含向量 y,支援的元素類型 Element#F32_2

incY
Int32

向量 y 元素的遞增必須大於零。

屬性

備註

CGEMV 會執行其中一個矩陣向量運算 y := alpha*A*x + beta*y 或 y := alpha*A**T*x + beta*y 或 y := alpha*A**H*x + beta*y

詳: http://www.netlib.org/lapack/explore-html/d4/d8a/cgemv_8f.html

android.renderscript.ScriptIntrinsicBLAS.CGEMV(int, android.renderscript.Float2, android.renderscript.Allocation, android.renderscript.Allocation, int, android.renderscript.Float2, android.renderscript.Allocation, int)Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於