.NET Matrix Library
CMatrix Constructor(CMatrix)
See Also  Send Feedback



matrix
The CMatrix object whose elements will by copied into the newly created matrix.
Initializes a new instance of the CMatrix class copying the content of an existing matrix.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal matrix As CMatrix _
)
Visual Basic (Usage)Copy Code
Dim matrix As CMatrix
 
Dim instance As New CMatrix(matrix)
C# 
public CMatrix( 
   CMatrix matrix
)
C++/CLI 
public:
CMatrix( 
   CMatrix^ matrix
)

Parameters

matrix
The CMatrix object whose elements will by copied into the newly created matrix.

Remarks

This is the copy constructor of the CMatrix class.

Requirements

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

See Also

.NET Matrix Library