Package jline.lib.kpctoolbox
Object MMPP2
-
- All Implemented Interfaces:
public class MMPP2Facade object for MMPP2 fitting functions. Accessed by the wrapper via: jline.lib.kpctoolbox.MMPP2
-
-
Method Summary
Modifier and Type Method Description final static MatrixCellfit(Matrix moments)Fits MMPP2 from moments (3-element Matrix). final static MatrixCellfit(Matrix moments, Double acf1)Fits MMPP2 from moments and autocorrelation decay. final static MatrixCellfit1(Matrix moments)Fits MMPP2 from mean, SCV, skewness, and IDC. final static MatrixCellfit2(Matrix moments, Double acf1)Fits MMPP2 from mean, SCV, skewness, and lag-1 autocorrelation. final static MatrixCellfit3(Matrix moments, Double acf1, Double acf2)Fits MMPP2 from moments and two autocorrelation values. -
-
Method Detail
-
fit
final static MatrixCell fit(Matrix moments)
Fits MMPP2 from moments (3-element Matrix). Wrapper calls: MMPP2.fit(momentsMatrix)
- Parameters:
moments- Matrix containing E1, E2, E3- Returns:
Fitted MAP as MatrixCell {D0, D1}
-
fit
final static MatrixCell fit(Matrix moments, Double acf1)
Fits MMPP2 from moments and autocorrelation decay. Wrapper calls: MMPP2.fit(momentsMatrix, acf1)
- Parameters:
moments- Matrix containing E1, E2, E3acf1- Lag-1 autocorrelation- Returns:
Fitted MAP as MatrixCell {D0, D1}
-
fit1
final static MatrixCell fit1(Matrix moments)
Fits MMPP2 from mean, SCV, skewness, and IDC. Wrapper calls: MMPP2.fit1(momentsMatrix)
- Parameters:
moments- Matrix containing mean, scv, skew, idc- Returns:
Fitted MAP as MatrixCell {D0, D1}
-
fit2
final static MatrixCell fit2(Matrix moments, Double acf1)
Fits MMPP2 from mean, SCV, skewness, and lag-1 autocorrelation. Wrapper calls: MMPP2.fit2(momentsMatrix, acf1)
- Parameters:
moments- Matrix containing mean, scv, skewacf1- Lag-1 autocorrelation- Returns:
Fitted MAP as MatrixCell {D0, D1}
-
fit3
final static MatrixCell fit3(Matrix moments, Double acf1, Double acf2)
Fits MMPP2 from moments and two autocorrelation values. Wrapper calls: MMPP2.fit3(momentsMatrix, acf1, acf2)
- Parameters:
moments- Matrix containing mean, scv, skewacf1- Lag-1 autocorrelationacf2- Lag-2 autocorrelation (used to estimate G2)- Returns:
Fitted MAP as MatrixCell {D0, D1}
-
-
-
-