Filter.BitwiseAnd Operator

Returns a filter representing the intersection of two filters.

Definition

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Filter operator &(
	Filter filter1,
	Filter filter2
)

Parameters

filter1  Filter
A Filter.
filter2  Filter
A Filter.

Return Value

Filter
A Filter representing the intersection of filter1 and filter2.

Remarks

An observation matches the intersection of two filters if it matches both filters. filter1 and filter2 must have the same length.

See Also