public static explicit operator DoubleMatrix (
	IndexPartition<double> value
)Public Shared Narrowing Operator CType ( 
	value As IndexPartition(Of Double)
) As DoubleMatrixstatic explicit operator DoubleMatrix^ (
	IndexPartition<double>^ value
)The partition is converted to a column vector whose row indexes are partitioned following the different parts of value, so that the rows whose indexes are in a given part will be filled with the identifier of such part.
In the following example, an index partition having doubles as part identifiers is converted to a matrix.
using System;
namespace Novacta.Analytics.CodeExamples
{
    public class IndexPartitionExample4  
    {
        public void Main()
        {
            // Create a matrix.
            var data = new double[6] {
                1,3,
                0,2,
                2,1                
            };
            var matrix = DoubleMatrix.Dense(3, 2, data, StorageOrder.RowMajor);
            // Partition the matrix linear indexes by the content of 
            // matrix entries: a part is created for each distinct matrix value.
            var partition = IndexPartition.Create(matrix);
            // Each part is identified by its corresponding value and contains
            // the linear indexes of the entries in which the identifier
            // is positioned.
            Console.WriteLine();
            foreach (var identifier in partition.Identifiers) {
                Console.WriteLine("Part identifier: {0}", identifier);
                Console.WriteLine("     indexes: {0}", partition[identifier]);
                Console.WriteLine();
            }
            // Convert the partition to a matrix.
            var fromPartition = (DoubleMatrix)partition;
            Console.WriteLine("Conversion of a partition to a matrix:");
            Console.WriteLine(fromPartition);
        }
    }
}
// Executing method Main() produces the following output:
// 
// 
// Part identifier: 0
//      indexes: 1
// 
// Part identifier: 1
//      indexes: 0, 5
// 
// Part identifier: 2
//      indexes: 2, 4
// 
// Part identifier: 3
//      indexes: 3
// 
// Conversion of a partition to a matrix:
// 1                
// 0                
// 2                
// 3                
// 2                
// 1                
// 
//| ArgumentNullException | value is null. |