Partager via


ScriptIntrinsicBLAS.SGEMV Méthode

Définition

SGEMV effectue l’une des opérations de vecteur de matrice y := alphaAx + bêtay ou y := alphaA**Tx + bêtay

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

Paramètres

TransA
Int32

Type de transposer appliqué à la matrice A.

alpha
Single

Alpha scalaire.

A
Allocation

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

X
Allocation

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

incX
Int32

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

beta
Single

Bêta scalaire.

Y
Allocation

L’allocation d’entrée contient le vecteur y, le type Element#F32d’é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

SGEMV effectue l’une des opérations de vecteur de matrice y := alpha*A*x + beta*y ou y := alpha*A**T*x + beta*y

Détails : http://www.netlib.org/lapack/explore-html/db/d58/sgemv_8f.html

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