Syntax
C# |
---|
public static void f01vk( string transr, string uplo, int n, Complex[] ap, Complex[] arf, out int info ) |
Visual Basic |
---|
Public Shared Sub f01vk ( _ transr As String, _ uplo As String, _ n As Integer, _ ap As Complex(), _ arf As Complex(), _ <OutAttribute> ByRef info As Integer _ ) |
Visual C++ |
---|
public: static void f01vk( String^ transr, String^ uplo, int n, array<Complex>^ ap, array<Complex>^ arf, [OutAttribute] int% info ) |
F# |
---|
static member f01vk : transr : string * uplo : string * n : int * ap : Complex[] * arf : Complex[] * info : int byref -> unit |
Parameters
- transr
- Type: System..::..StringOn entry: specifies whether the normal RFP representation of or its conjugate transpose is stored.
- The matrix is stored in normal RFP format.
- The conjugate transpose of the RFP representation of the matrix is stored.
Constraint: or .
- uplo
- Type: System..::..StringOn entry: specifies whether is upper or lower triangular.
- is upper triangular.
- is lower triangular.
Constraint: or .
- n
- Type: System..::..Int32On entry: , the order of the matrix .Constraint: .
- ap
- Type: array<NagLibrary..::..Complex>[]()[][]An array of size []On entry: the by triangular matrix , packed by columns.More precisely,
- if , the upper triangle of must be stored with element in for ;
- if , the lower triangle of must be stored with element in for .
- arf
- Type: array<NagLibrary..::..Complex>[]()[][]An array of size []
- info
- Type: System..::..Int32%On exit: unless the method detects an error (see [Error Indicators and Warnings]).
Description
f01vk copies a complex by triangular matrix, , stored packed format, to RFP format. This method is intended for possible use in conjunction with methods from F06 class F07 class where some methods that use triangular matrices store them in RFP format.
References
None.
Error Indicators and Warnings
- If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
Accuracy
Not applicable.
Parallelism and Performance
None.
Further Comments
None.
Example
This example reads in a triangular matrix in packed format and copies it to RFP format.
Example program (C#): f01vke.cs