public IndexCollection FindWhile(
Predicate<Complex> match
)
Public Function FindWhile (
match As Predicate(Of Complex)
) As IndexCollection
public:
IndexCollection^ FindWhile(
Predicate<Complex>^ match
)
member FindWhile :
match : Predicate<Complex> -> IndexCollection
Matrix entries are interpreted as well ordered following a column major ordering. The position of an entry in such well ordering is referred to as the linear position of that entry.
In the following example, the negative entries of a data matrix are found.
using System;
using System.Numerics;
namespace Novacta.Analytics.CodeExamples
{
public class ComplexFindWhileExample0
{
public void Main()
{
// Create a matrix.
var data = new Complex[6] {
new(0, 0), new(5, -5),
new(2, -2), new(0, 0),
new(0, 0), new(2, -2)
};
var matrix = ComplexMatrix.Dense(3, 2, data, StorageOrder.RowMajor);
Console.WriteLine("The data matrix:");
Console.WriteLine(matrix);
// Match entries having magnitude less than 2.
static bool match(Complex value) { return value.Magnitude < 2.0; }
// Find the linear indexes of matched entries in data.
var indexes = matrix.FindWhile(match);
Console.WriteLine();
Console.WriteLine("Linear indexes of matched entries in data:");
Console.WriteLine(indexes);
// FindWhile is available for read-only matrices:
// find matched entries using a read-only wrapper of the data matrix.
ReadOnlyComplexMatrix readOnlyMatrix = matrix.AsReadOnly();
indexes = readOnlyMatrix.FindWhile(match);
Console.WriteLine();
Console.WriteLine("Using read-only data. Linear indexes of matched entries:");
Console.WriteLine(indexes);
}
}
}
// Executing method Main() produces the following output:
//
// The data matrix:
// ( 0, 0) ( 5, -5)
// ( 2, -2) ( 0, 0)
// ( 0, 0) ( 2, -2)
//
//
//
// Linear indexes of matched entries in data:
// 0, 2, 4
//
// Using read-only data. Linear indexes of matched entries:
// 0, 2, 4
ArgumentNullException | match is null. |