Compartilhar via


ScriptIntrinsicBLAS.SSYMV Método

Definição

O SSYMV executa a operação matriz-vetor y := alfaAx + beta*y

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

Parâmetros

Uplo
Int32

Especifica se a parte triangular superior ou inferior deve ser referenciada.

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 SSYMV executa a operação matriz-vetor y := alfa*A*x + beta*y

Detalhes: http://www.netlib.org/lapack/explore-html/d2/d94/ssymv_8f.html

Documentação Java para android.renderscript.ScriptIntrinsicBLAS.SSYMV(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