.NET Matrix Library
ToArray Method
See Also  Send Feedback



Converts current matrix to an array.

Syntax

Visual Basic (Declaration) 
Public Function ToArray() As Double(,)
Visual Basic (Usage)Copy Code
Dim instance As Matrix
Dim value() As Double
 
value = instance.ToArray()
C# 
public double[,] ToArray()
C++/CLI 
public:
array<double,>^ ToArray(); 

Return Value

An two-dimensional array of type double containing the elements of the current matrix.

Requirements

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

See Also

.NET Matrix Library