共用方式為


ScriptIntrinsicBLAS.CHPR2 方法

定義

CHPR2 會執行對稱排名 2 運算 A := alphaxyH + AlphayxH + A

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

參數

Uplo
Int32

指定要以包裝形式提供上半角或下三角形部分。

alpha
Float2

純量Alpha。

X
Allocation

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

incX
Int32

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

Y
Allocation

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

incY
Int32

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

Ap
Allocation

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

屬性

備註

CHPR2 會執行對稱排名 2 運算 A := alpha*x*y**H + alpha*y*x**H + A

詳: http://www.netlib.org/lapack/explore-html/d6/d44/chpr2_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.renderscript.ScriptIntrinsicBLAS.CHPR2(int, android.renderscript.Float2, android.renderscript.Allocation, int, android.renderscript.Allocation, int, android.renderscript.Allocation)Java 檔。

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

適用於