Interface IInterpolation
Represents an interploation algorithm
Namespace: SigStat.Common.PipelineItems.Transforms.Preprocessing
Assembly: SigStat.Common.dll
Syntax
public interface IInterpolation
Properties
| Improve this Doc View SourceFeatureValues
Gets or sets the feature values.
Declaration
List<double> FeatureValues { get; set; }
Property Value
Type | Description |
---|---|
List<System.Double> |
TimeValues
Timestamps
Declaration
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
double GetValue(double timestamp)
Parameters
Type | Name | Description |
---|---|---|
System.Double | timestamp | The timestamp. |
Returns
Type | Description |
---|---|
System.Double |