Click or drag to resize
Accord.NET (logo)

IFilter Interface

Sample processing filter interface.

Namespace:  Accord.Statistics.Filters
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public interface IFilter
Request Example View Source

The IFilter type exposes the following members.

Methods
  NameDescription
Public methodApply
Applies the filter to a DataTable.
Top
Remarks
The interface defines the set of methods which should be provided by all table processing filters. Methods of this interface should keep the source table unchanged and return the result of data processing filter as new data table.
See Also