ScriptIntrinsicBLAS.STRMV 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.
STRMV performs one of the matrix-vector operations x := Ax or x := A**Tx
[Android.Runtime.Register("STRMV", "(IIILandroid/renderscript/Allocation;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)]
public void STRMV (int Uplo, int TransA, int Diag, Android.Renderscripts.Allocation? A, Android.Renderscripts.Allocation? X, int incX);
[<Android.Runtime.Register("STRMV", "(IIILandroid/renderscript/Allocation;Landroid/renderscript/Allocation;I)V", "", ApiSince=23)>]
member this.STRMV : int * int * int * Android.Renderscripts.Allocation * Android.Renderscripts.Allocation * int -> unit
Parameters
- Uplo
- Int32
Specifies whether the matrix is an upper or lower triangular matrix.
- TransA
- Int32
The type of transpose applied to matrix A.
- Diag
- Int32
Specifies whether or not A is unit triangular.
The input allocation contains matrix A, supported elements type Element#F32
.
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.
- Attributes
Remarks
STRMV performs one of the matrix-vector operations x := A*x or x := A**T*x
Details: http://www.netlib.org/lapack/explore-html/de/d45/strmv_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.