Table of Contents

Class Series

Namespace
ScottPlot.Statistics
Assembly
ScottPlot.dll
public static class Series
Inheritance
Series
Inherited Members

Methods

MovingAverage(double[], int, bool)

Return a moving window average of the given data. If original length is true, data will be padded with NaN.

public static double[] MovingAverage(double[] values, int window, bool preserveLength = false)

Parameters

values double[]
window int
preserveLength bool

Returns

double[]

SimpleMovingStandardDeviation(double[], int, bool)

Return a moving window standard deviation of the given data. If original length is true, data will be padded with NaN.

public static double[] SimpleMovingStandardDeviation(double[] values, int window, bool preserveLength = false)

Parameters

values double[]
window int
preserveLength bool

Returns

double[]