Click or drag to resize

MatrixTExists Method

Returns true if at least one element satisfies a predicate. Zero elements may be skipped on sparse data structures if allowed (default).

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public bool Exists(
	Func<T, bool> predicate,
	Zeros zeros = Zeros.AllowSkip
)

Parameters

predicate  FuncT, Boolean
The predicate used to test each value.
zeros  Zeros  (Optional)
Controls whether zero values may be skipped.

Return Value

Boolean
if any element satisfies the predicate; otherwise, .
See Also