.NET Matrix Library
CVector Constructor(Complex[])
See Also  Send Feedback



array
The array of complex structures whose content will be used to initialize the elements of the newly created CVector object.
Initializes a new instance of the CVector class using the content of an array.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal array() As Complex _
)
Visual Basic (Usage)Copy Code
Dim array() As Complex
 
Dim instance As New CVector(array)
C# 
public CVector( 
   Complex[] array
)
C++/CLI 
public:
CVector( 
   array<Complex>^ array
)

Parameters

array
The array of complex structures whose content will be used to initialize the elements of the newly created CVector object.

Requirements

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

See Also

.NET Matrix Library