Class Map
Maps values of a feature to a specified range.
Pipeline Input type: List{double}
Default Pipeline Output: (List{double}) MapResult
Inherited Members
Namespace: SigStat.Common.Transforms
Assembly: SigStat.Common.dll
Syntax
public class Map : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Constructors
| Improve this Doc View SourceMap(Double, Double)
Initializes a new instance of the Map class with specified settings.
Declaration
public Map(double minVal, double maxVal)
Parameters
Type | Name | Description |
---|---|---|
System.Double | minVal | New minimum value. |
System.Double | maxVal | New maximum value. |
Properties
| Improve this Doc View SourceInput
Input
Declaration
public FeatureDescriptor<List<double>> Input { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
Output
Output
Declaration
public FeatureDescriptor<List<double>> Output { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
Methods
| Improve this Doc View SourceTransform(Signature)
Executes the transform on the signature
parameter.
This function gets called by the pipeline.
Declaration
public void Transform(Signature signature)
Parameters
Type | Name | Description |
---|---|---|
Signature | signature | The Signature with a set of features to be transformed. |