Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void PACF(TVec *Acf, TVec *Arp, TVec *ParCorr, TVec *Variance); | Partial autocorrelation function. |
| 2 | void PACF(TVec *Src, TVec *Dst); | Partial autocorelation function. |
Overload 1: void PACF(TVec *Acf, TVec *Arp, TVec *ParCorr, TVec *Variance);
Partial autocorrelation function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Acf | TVec * | Autocorrelation function. |
| 2 | Arp | TVec * | autoregressive model parameters. |
| 3 | ParCorr | TVec * | partial autocorrelation (-reflection coefficients) |
| 4 | Variance | TVec * | Error variance. |
Remarks:
Calculates sample partial autocorrelation function (PACF).
Declared in Dew::Stats::Units::StatTimeSerAnalysis · Dew.Stats/Units.StatTimeSerAnalysis.h · Cross-compiler
Overload 2: void PACF(TVec *Src, TVec *Dst);
Partial autocorelation function.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec * | Stores the sample autocorrelation function (ACF). |
| 2 | Dst | TVec * | Returns the sample partial autocorrelation function (PACF) on output. |
See Also: StatTimeSerAnalysis::ACF
Declared in Dew::Stats::Units::StatTimeSerAnalysis · Dew.Stats/Units.StatTimeSerAnalysis.h · Cross-compiler