ScriptIntrinsicBLAS.SSYR(Int32, Single, Allocation, Int32, Allocation) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
SSYR performs the rank 1 operation A := alphaxx**T + A
[Android.Runtime.Register("SSYR", "(IFLandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)]
public void SSYR (int Uplo, float alpha, Android.Renderscripts.Allocation? X, int incX, Android.Renderscripts.Allocation? A);
[<Android.Runtime.Register("SSYR", "(IFLandroid/renderscript/Allocation;ILandroid/renderscript/Allocation;)V", "", ApiSince=23)>]
member this.SSYR : int * single * Android.Renderscripts.Allocation * int * Android.Renderscripts.Allocation -> unit
Parameters
- Uplo
- Int32
Specifies whether the upper or lower triangular part is to be referenced.
- alpha
- Single
The scalar alpha.
The input allocation contains vector x, supported elements type Element#F32
.
- incX
- Int32
The increment for the elements of vector x, must be larger than zero.
The input allocation contains matrix A, supported elements type Element#F32
.
- Attributes
Remarks
SSYR performs the rank 1 operation A := alpha*x*x**T + A
Details: http://www.netlib.org/lapack/explore-html/d6/dac/ssyr_8f.html
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.