.NET Matrix Library
CMatrix Constructor(Complex[],Int32,Int32,StorageOrder)
See Also  Send Feedback



array
The array of type complex whose content will be used to initialize the elements of the newly created CMatrix object.
rows
The number of rows of the new CMatrix object.
cols
The number of rows of the new CMatrix object.
order
Initializes a new instance of the CMatrix class using the content of a one-dimensional array.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal array() As Complex, _
   ByVal rows As Integer, _
   ByVal cols As Integer, _
   ByVal order As StorageOrder _
)
Visual Basic (Usage)Copy Code
Dim array() As Complex
Dim rows As Integer
Dim cols As Integer
Dim order As StorageOrder
 
Dim instance As New CMatrix(array, rows, cols, order)
C# 
public CMatrix( 
   Complex[] array,
   int rows,
   int cols,
   StorageOrder order
)
C++/CLI 
public:
CMatrix( 
   array<Complex>^ array,
   int rows,
   int cols,
   StorageOrder order
)

Parameters

array
The array of type complex whose content will be used to initialize the elements of the newly created CMatrix object.
rows
The number of rows of the new CMatrix object.
cols
The number of rows of the new CMatrix object.
order

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library