.NET Matrix Library
Implicit Type Conversion(Matrix,Double[,]) Operator
See Also  Send Feedback


array
The array of doubles to convert.
Converts a two dimensional array of doubles to a Matrix object.

Syntax

Visual Basic (Declaration) 
Overloads Public Operator Widening CType( _
   ByVal array(,) As Double _
) As Matrix
C# 
public Matrix operator implicit( 
   double[,] array
)
C++/CLI 
public:
operator Matrix^ ( 
   array<double>^ array
)

Parameters

array
The array of doubles to convert.

Requirements

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

See Also

.NET Matrix Library