Class LinearInterpolation
Performs linear interpolation on the input
Inheritance
System.Object
LinearInterpolation
Implements
Namespace: SigStat.Common.PipelineItems.Transforms.Preprocessing
Assembly: SigStat.Common.dll
Syntax
public class LinearInterpolation : object, IInterpolation
Properties
| Improve this Doc View SourceFeatureValues
Gets or sets the feature values.
Declaration
public List<double> FeatureValues { get; set; }
Property Value
Type | Description |
---|---|
List<System.Double> |
TimeValues
Timestamps
Declaration
public List<double> TimeValues { get; set; }
Property Value
Type | Description |
---|---|
List<System.Double> |
Methods
| Improve this Doc View SourceGetValue(Double)
Gets the interpolated value at a given timestamp
Declaration
public double GetValue(double timestamp)
Parameters
Type | Name | Description |
---|---|---|
System.Double | timestamp | The timestamp. |
Returns
Type | Description |
---|---|
System.Double |