Show / Hide Table of Contents

Class Multiply

Multiplies the values of a feature with a given constant.

Pipeline Input type: List{double}

Default Pipeline Output: (List{double}) Input

Inheritance
System.Object
PipelineBase
Multiply
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 Multiply : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO

Constructors

| Improve this Doc View Source

Multiply(Double)

Initializes a new instance of the Multiply class with specified settings.

Declaration
public Multiply(double byConst)
Parameters
Type Name Description
System.Double byConst

The value to multiply the input feature by.

Properties

| Improve this Doc View Source

InputList

Input

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

Output

Output

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