DoubleMatrixAsRowCollection(IndexCollection) Method

Returns the collection of the rows in the DoubleMatrix corresponding to the specified indexes.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public DoubleMatrixRowCollection AsRowCollection(
	IndexCollection rowIndexes
)

Parameters

rowIndexes  IndexCollection
The indexes of the rows to collect.

Return Value

DoubleMatrixRowCollection
The collection of the specified rows in this instance.

Example

In the following example, some rows of a matrix are enumerated.

C#
using System;

namespace Novacta.Analytics.CodeExamples
{
    public class RowsEnumeratorExample1  
    {
        public void Main()
        {
            // Create a matrix.
            var data = new double[12] {
                1, 5,  9,
                2, 6, 10,
                3, 7, 11,
                4, 8, 12
            };
            var matrix = DoubleMatrix.Dense(4, 3, data, StorageOrder.RowMajor);
            Console.WriteLine("Data matrix:");
            Console.WriteLine(matrix);
            Console.WriteLine();

            // Specify the rows to enumerate.
            var rowIndexes = IndexCollection.FromArray([0, 0, 1, 2, 3, 2]);

            // Get the collection of the specified matrix rows.
            var rows = matrix.AsRowCollection(rowIndexes);

            // Enumerate the specified matrix rows.
            foreach (var row in rows) {
                Console.WriteLine("Row {0}: ", row.Index);
                Console.WriteLine(row);
            }
        }
    }
}

// Executing method Main() produces the following output:
// 
// Data matrix:
// 1                5                9                
// 2                6                10               
// 3                7                11               
// 4                8                12               
// 
// 
// 
// Row 0: 
// 1                5                9                
// Row 0: 
// 1                5                9                
// Row 1: 
// 2                6                10               
// Row 2: 
// 3                7                11               
// Row 3: 
// 4                8                12               
// Row 2: 
// 3                7                11

Exceptions

ArgumentNullExceptionrowIndexes is null.
ArgumentOutOfRangeExceptionrowIndexes contains an index which is greater than or equal to the NumberOfRows of this instance.

See Also