Partager via


ScriptIntrinsicBLAS.CHBMV Méthode

Définition

CHBMV effectue l’opération matrice-vector y := alphaAx + beta*y

[Android.Runtime.Register("CHBMV", "(IILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;ILandroid/renderscript/Float2;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)]
public void CHBMV (int Uplo, int K, 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("CHBMV", "(IILandroid/renderscript/Float2;Landroid/renderscript/Allocation;Landroid/renderscript/Allocation;ILandroid/renderscript/Float2;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)>]
member this.CHBMV : int * int * Android.Renderscripts.Float2 * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * int * Android.Renderscripts.Float2 * Android.Renderscripts.Allocation * int -> unit

Paramètres

Uplo
Int32

Spécifie si la partie triangulaire supérieure ou inférieure de la matrice de bande A est fournie.

K
Int32

Nombre de diagonales hors diagonale de la matrice A

alpha
Float2

Alpha scalaire.

A
Allocation

L’allocation d’entrée contient la matrice A, type Element#F32_2d’éléments pris en charge.

X
Allocation

L’allocation d’entrée contient le vecteur x, le type Element#F32_2d’éléments pris en charge.

incX
Int32

L’incrément pour les éléments du vecteur x doit être supérieur à zéro.

beta
Float2

Bêta scalaire.

Y
Allocation

L’allocation d’entrée contient le vecteur y, le type Element#F32_2d’éléments pris en charge.

incY
Int32

L’incrément pour les éléments du vecteur y doit être supérieur à zéro.

Attributs

Remarques

CHBMV effectue l’opération matrix-vector y := alpha*A*x + beta*y

Détails : http://www.netlib.org/lapack/explore-html/db/dc2/chbmv_8f.html

Remarque : Pour une matrice N*N, l’allocation d’entrée doit également être de taille N*N (dimY = N, dimX = N), mais seule la région N*(K+1) sera référencée. La sous-routine suivante peut être un exemple montrant comment convertir une matrice trianglar SUPÉRIEURE 'a' en matrice de bande basée sur des lignes 'b'. for i in range(0, n) : for j in range(i, min(i+k+1, n)) : b[i, j-i] = a[i, j]

Documentation Java pour android.renderscript.ScriptIntrinsicBLAS.CHBMV(int, int, android.renderscript.Float2, android.renderscript.Allocation, android.renderscript.Allocation, int, android.renderscript.Float2, android.renderscript.Allocation, int).

Les parties de cette page sont des modifications basées sur le travail créé et partagé par le projet Android Open Source et utilisés en fonction des termes décrits dans la licence d’attribution Creative Commons 2.5.

S’applique à