ScriptIntrinsicBLAS.DSYMV Método

Definición

DSYMV realiza la operación matrix-vector y := alphaAx + beta*y

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

Parámetros

Uplo
Int32

Especifica si se debe hacer referencia a la parte triangular superior o inferior.

alpha
Double

Alfa escalar.

A
Allocation

La asignación de entrada contiene la matriz A, el tipo Element#F64de elementos admitidos.

X
Allocation

La asignación de entrada contiene el vector x, el tipo Element#F64de elementos admitidos .

incX
Int32

El incremento de los elementos de vector x debe ser mayor que cero.

beta
Double

La beta escalar.

Y
Allocation

La asignación de entrada contiene vector y, tipos de elementos admitidos Element#F64.

incY
Int32

El incremento de los elementos de vector y debe ser mayor que cero.

Atributos

Comentarios

DSYMV realiza la operación matrix-vector y := alpha*A*x + beta*y

Detalles: http://www.netlib.org/lapack/explore-html/d8/dbe/dsymv_8f.html

Java documentación para android.renderscript.ScriptIntrinsicBLAS.DSYMV(int, double, android.renderscript.Allocation, android.renderscript.Allocation, int, double, android.renderscript.Allocation, int).

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.

Se aplica a