Compartilhar via


ScriptIntrinsicBLAS.SGEMV Método

Definição

SGEMV executa uma das operações matriciais-vetoriais y := alfaA x + betay ou y := alfaA**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

Parâmetros

TransA
Int32

O tipo de transposição aplicado à matriz A.

alpha
Single

O alfa escalar.

A
Allocation

A alocação de entrada contém matriz A, tipo Element#F32de elementos suportados .

X
Allocation

A alocação de entrada contém vetor x, tipo Element#F32de elementos suportados .

incX
Int32

O incremento para os elementos do vetor x, deve ser maior que zero.

beta
Single

O beta escalar.

Y
Allocation

A alocação de entrada contém vetor y, tipo Element#F32de elementos suportados .

incY
Int32

O incremento para os elementos do vetor y, deve ser maior que zero.

Atributos

Comentários

O SGEMV executa uma das operações matriciais-vetoriais y := alfa*A*x + beta*y ou y := alfa*A**T*x + beta*y

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

Documentação Java para android.renderscript.ScriptIntrinsicBLAS.SGEMV(int, float, android.renderscript.Allocation, android.renderscript.Allocation, int, float, android.renderscript.Allocation, int).

Partes desta página são modificações baseadas no trabalho criado e compartilhado pelo Android Open Source Project e usado de acordo com os termos descritos na Creative Commons 2.5 Attribution License.

Aplica-se a