Class AddConst
Adds a constant value to a feature. Works with collection features too.
Default Pipeline Output: Pipeline Input
Inherited Members
Namespace: SigStat.Common.Transforms
Assembly: SigStat.Common.dll
Syntax
public class AddConst : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Constructors
| Improve this Doc View SourceAddConst(Double)
Initializes a new instance of the AddConst class with specified settings.
Declaration
public AddConst(double value)
Parameters
Type | Name | Description |
---|---|---|
System.Double | value | The value to be added to the input feature. |
Properties
| Improve this Doc View SourceInput
Input values for trasformation
Declaration
public FeatureDescriptor<List<double>> Input { get; set; }
Property Value
Type | Description |
---|---|
FeatureDescriptor<List<System.Double>> |
Output
Output feature to store results
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. |