Class AddVector
Adds a vector feature's elements to other features.
Default Pipeline Output: Pipeline Input
Inherited Members
Namespace: SigStat.Common.Transforms
Assembly: SigStat.Common.dll
Syntax
public class AddVector : PipelineBase, ILoggerObject, IProgress, ITransformation, IPipelineIO
Examples
Inputs are: Centroid.xy, X, Y . Adds Centroid.x to each element of X. Adds Centroid.y to each element of Y.
Constructors
| Improve this Doc View SourceAddVector(FeatureDescriptor<List<Double>>)
Initializes a new instance of the AddVector class with a vector feature. Don't forget to add as many Inputs as the vector's dimension.
Declaration
public AddVector(FeatureDescriptor<List<double>> vectorFeature)
Parameters
Type | Name | Description |
---|---|---|
FeatureDescriptor<List<System.Double>> | vectorFeature | A collection-type feature where each element represents a dimension of the vector. |
Properties
| Improve this Doc View SourceInputs
Inputs
Declaration
public List<FeatureDescriptor<List<double>>> Inputs { get; set; }
Property Value
Type | Description |
---|---|
List<FeatureDescriptor<List<System.Double>>> |
Outputs
Outputs
Declaration
public List<FeatureDescriptor<List<double>>> Outputs { get; set; }
Property Value
Type | Description |
---|---|
List<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. |