TimeSeriesFunctions.PartialAutocorrelationFunction Method

Computes the Partial Auto-Correlation Function (PACF) from an Auto-Correlation Function (ACF).

Definition

Namespace: Numerics.NET.Statistics.TimeSeriesAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static Vector<double> PartialAutocorrelationFunction(
	this Vector<double> acf
)

Parameters

acf  Vector<Double>
A vector containing the values of the ACF.

Return Value

Vector<Double>
A vector containing the values of the PACF.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<Double>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also