ScriptIntrinsicBLAS.SGEMV Methode

Definition

SGEMV führt eine der Matrixvektorvorgänge y := AlphaAx + Betay oder y := AlphaA**Tx + Betay

[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

Parameter

TransA
Int32

Der Auf Matrix A angewendete Transponierentyp.

alpha
Single

Der skalare Alphawert.

A
Allocation

Die Eingabezuweisung enthält matrix A, unterstützte Elementtypen Element#F32.

X
Allocation

Die Eingabezuweisung enthält Vektor x, unterstützte Elementtypen Element#F32.

incX
Int32

Der Inkrement für die Elemente von Vektor x muss größer als 0 sein.

beta
Single

Die skalare Betaversion.

Y
Allocation

Die Eingabezuweisung enthält Vektor y, unterstützte Elementtypen Element#F32.

incY
Int32

Das Inkrement für die Elemente des Vektors y muss größer als 0 sein.

Attribute

Hinweise

SGEMV führt eine der Matrixvektorvorgänge y := Alpha*A*x + Beta*y oder y := Alpha*A**T*x + Beta*y durch

Einzelheiten: http://www.netlib.org/lapack/explore-html/db/d58/sgemv_8f.html

Java Dokumentation für android.renderscript.ScriptIntrinsicBLAS.SGEMV(int, float, android.renderscript.Allocation, android.renderscript.Allocation, int, float, android.renderscript.Allocation, int).

Teile dieser Seite sind Änderungen auf der Grundlage von Arbeiten, die von der Android Open Source Project erstellt und gemeinsam verwendet und gemäß den in der 2.5 Attribution License beschriebenen Begriffen verwendet werden.

Gilt für: