Show / Hide Table of Contents

Class AddConst

Adds a constant value to a feature. Works with collection features too.

Default Pipeline Output: Pipeline Input

Inheritance
System.Object
PipelineBase
AddConst
Implements
ILoggerObject
IProgress
ITransformation
IPipelineIO
Inherited Members
PipelineBase.PipelineInputs
PipelineBase.PipelineOutputs
PipelineBase.Logger
PipelineBase.Progress
PipelineBase.ProgressChanged
PipelineBase.OnProgressChanged()
Namespace: SigStat.Common.Transforms
Assembly: SigStat.Common.dll
Syntax
public class AddConst : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO

Constructors

| Improve this Doc View Source

AddConst(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 Source

Input

Input values for trasformation

Declaration
public FeatureDescriptor<List<double>> Input { get; set; }
Property Value
Type Description
FeatureDescriptor<List<System.Double>>
| Improve this Doc View Source

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 Source

Transform(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.

Implements

ILoggerObject
IProgress
ITransformation
IPipelineIO
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX