Partager via


ScriptIntrinsicBLAS.CTPMV Méthode

Définition

CTPMV effectue l’une des opérations de vecteur de matrice x := Ax ou x := A**Tx ou x := A**H*x

[Android.Runtime.Register("CTPMV", "(IIILandroid/renderscript/Allocation;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)]
public void CTPMV (int Uplo, int TransA, int Diag, Android.Renderscripts.Allocation? Ap, Android.Renderscripts.Allocation? X, int incX);
[<Android.Runtime.Register("CTPMV", "(IIILandroid/renderscript/Allocation;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)>]
member this.CTPMV : int * int * int * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * int -> unit

Paramètres

Uplo
Int32

Spécifie si la matrice est une matrice triangulaire supérieure ou inférieure.

TransA
Int32

Type de transposer appliqué à la matrice A.

Diag
Int32

Spécifie si A est ou non une unité triangulaire.

Ap
Allocation

L’allocation d’entrée contient la matrice packed 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.

Attributs

Remarques

CTPMV effectue l’une des opérations de vecteur de matrice x := A*x ou x := A**T*x ou x := A**H*x

Détails : http://www.netlib.org/lapack/explore-html/d4/dbb/ctpmv_8f.html

Remarque : Pour une matrice N*N, l’allocation d’entrée doit être une allocation 1D de taille dimX = N*(N+1)/2, la sous-routine suivante peut être un exemple montrant comment convertir une matrice trianglar supérieure 'a' en matrice empaquetée 'b'. k = 0 pour i dans la plage(0, n) : pour j in range(i, n) : b[k++] = a[i, j]

Documentation Java pour android.renderscript.ScriptIntrinsicBLAS.CTPMV(int, int, int, android.renderscript.Allocation, 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 à