ScriptIntrinsicBLAS.DGEMV 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
DGEMV 會執行其中一個矩陣向量運算 y := alphaAx + betay 或 y := alphaA**Tx + betay
[Android.Runtime.Register("DGEMV", "(IDLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;IDLandroid/renderscript/Allocation;I)V", "", ApiSince=23)]
public void DGEMV (int TransA, double alpha, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? X, int incX, double beta, Android.Renderscripts.Allocation? Y, int incY);
[<Android.Runtime.Register("DGEMV", "(IDLandroid/renderscript/Allocation;Landroid/renderscript/Allocation;IDLandroid/renderscript/Allocation;I)V", "", ApiSince=23)>]
member this.DGEMV : int * double * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * int * double * Android.Renderscripts.Allocation * int -> unit
參數
- TransA
- Int32
套用至矩陣 A 的轉置類型。
- alpha
- Double
純量Alpha。
輸入配置包含矩陣 A,支援的元素類型 Element#F64
。
輸入設定包含向量 x,支援的元素類型 Element#F64
。
- incX
- Int32
向量 x 元素的遞增必須大於零。
- beta
- Double
純量 Beta。
輸入設定包含向量 y,支援的元素類型 Element#F64
。
- incY
- Int32
向量 y 元素的遞增必須大於零。
- 屬性
備註
DGEMV 會執行其中一個矩陣向量運算 y := alpha*X + beta*y 或 y := alpha*A**T*x + beta*y
詳: http://www.netlib.org/lapack/explore-html/dc/da8/dgemv_8f.html
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。