Package jline.lib.kpctoolbox
Object KPCFit
-
- All Implemented Interfaces:
public class KPCFitFacade object for KPC fitting functions. Accessed by the wrapper via: jline.lib.kpctoolbox.KPCFit
-
-
Method Summary
Modifier and Type Method Description final static KPCFitResultfitAuto(Matrix moments)Automatic KPC fitting from moments. final static KPCFitResultfitAuto(Matrix moments, Double acf1)Automatic KPC fitting with lag-1 autocorrelation. final static KPCFitResultfitAuto(Matrix moments, Double acf1, Double acf2)Automatic KPC fitting with two autocorrelation values. final static KPCFitResultfitManual(Matrix moments, Integer nComponents, String structure)Manual KPC fitting with specified parameters. -
-
Method Detail
-
fitAuto
final static KPCFitResult fitAuto(Matrix moments)
Automatic KPC fitting from moments. Wrapper calls: KPCFit.fitAuto(momentsMatrix)
- Parameters:
moments- Matrix of moments- Returns:
KPCFitResult
-
fitAuto
final static KPCFitResult fitAuto(Matrix moments, Double acf1)
Automatic KPC fitting with lag-1 autocorrelation. Wrapper calls: KPCFit.fitAuto(momentsMatrix, acf1)
- Parameters:
moments- Matrix of momentsacf1- Lag-1 autocorrelation- Returns:
KPCFitResult
-
fitAuto
final static KPCFitResult fitAuto(Matrix moments, Double acf1, Double acf2)
Automatic KPC fitting with two autocorrelation values. Wrapper calls: KPCFit.fitAuto(momentsMatrix, acf1, acf2)
- Parameters:
moments- Matrix of momentsacf1- Lag-1 autocorrelationacf2- Lag-2 autocorrelation- Returns:
KPCFitResult
-
fitManual
final static KPCFitResult fitManual(Matrix moments, Integer nComponents, String structure)
Manual KPC fitting with specified parameters. Wrapper calls: KPCFit.fitManual(momentsMatrix, nComponents, structure)
- Parameters:
moments- Matrix of momentsnComponents- Number of KPC componentsstructure- Structure type- Returns:
KPCFitResult
-
-
-
-