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


matrix
The matrix to convert.
Converts a Matrix object to an array of doubles.

Syntax

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

Parameters

matrix
The matrix 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