Show / Hide Table of Contents

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 Source

FeatureValues

Gets or sets the feature values.

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

TimeValues

Timestamps

Declaration
List<double> TimeValues { get; set; }
Property Value
Type Description
List<System.Double>

Methods

| Improve this Doc View Source

GetValue(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
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX