Codifier Delegate

Encapsulates a method that assigns a numerical code to a label having the specified string representation in a given culture.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public delegate double Codifier(
	string token,
	IFormatProvider provider
)

Parameters

token  String
The string representing a label to which a code must be assigned.
provider  IFormatProvider
An object that provides formatting information to parse labels.

Return Value

Double
The code assigned to the label.

Remarks

Objects of type Codifier can be used to define how data from a stream of characters should be encoded into a DoubleMatrix instance.

See Also