Class StationaryNormalProcess
java.lang.Object
org.ojalgo.random.process.AbstractProcess<Normal>
org.ojalgo.random.process.SingleValueBasedProcess<Normal>
org.ojalgo.random.process.StationaryNormalProcess
- All Implemented Interfaces:
Process1D.ComponentProcess<Normal>, RandomProcess<Normal>
public final class StationaryNormalProcess
extends SingleValueBasedProcess<Normal>
implements Process1D.ComponentProcess<Normal>
Process with fixed mean and (possibly) fluctuating variance given by a
ScedasticityModel.-
Nested Class Summary
Nested classes/interfaces inherited from interface RandomProcess
RandomProcess.SimulationResults -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) doubledoStep(double stepSize, double normalisedRandomIncrement) static StationaryNormalProcessestimateARCH(Access1D<?> series, int q) static StationaryNormalProcessestimateGARCH(Access1D<?> series, int p, int q) getDistribution(double evaluationPoint) (package private) doublegetExpected(double stepSize) (package private) doublegetLowerConfidenceQuantile(double stepSize, double confidence) (package private) double(package private) doublegetStandardDeviation(double stepSize) (package private) doublegetUpperConfidenceQuantile(double stepSize, double confidence) doublegetValue()(package private) doublegetVariance(double stepSize) static StationaryNormalProcessof(ScedasticityModel scedasticityModel) voidsetValue(double newValue) doublestep()doublestep(double stepSize, double standardGaussianInnovation) Methods inherited from class SingleValueBasedProcess
getCurrentValue, setCurrentValue, simulateMethods inherited from class AbstractProcess
getExpected, getLowerConfidenceQuantile, getStandardDeviation, getUpperConfidenceQuantile, getVariance, stepMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface RandomProcess
simulate
-
Field Details
-
myScedasticityModel
-
-
Constructor Details
-
StationaryNormalProcess
StationaryNormalProcess(ScedasticityModel scedasticityModel)
-
-
Method Details
-
estimateARCH
-
estimateGARCH
-
of
-
getDistribution
- Specified by:
getDistributionin interfaceRandomProcess<Normal>- Parameters:
evaluationPoint- How far into the future?- Returns:
- The distribution for the process value at that future time.
-
getValue
public double getValue()- Specified by:
getValuein interfaceProcess1D.ComponentProcess<Normal>
-
setValue
public void setValue(double newValue) - Specified by:
setValuein interfaceProcess1D.ComponentProcess<Normal>
-
step
public double step() -
step
public double step(double stepSize, double standardGaussianInnovation) - Specified by:
stepin interfaceProcess1D.ComponentProcess<Normal>
-
doStep
double doStep(double stepSize, double normalisedRandomIncrement) - Specified by:
doStepin classAbstractProcess<Normal>
-
getExpected
double getExpected(double stepSize) - Specified by:
getExpectedin classAbstractProcess<Normal>
-
getLowerConfidenceQuantile
double getLowerConfidenceQuantile(double stepSize, double confidence) - Specified by:
getLowerConfidenceQuantilein classAbstractProcess<Normal>
-
getNormalisedRandomIncrement
double getNormalisedRandomIncrement()- Specified by:
getNormalisedRandomIncrementin classAbstractProcess<Normal>
-
getStandardDeviation
double getStandardDeviation(double stepSize) - Specified by:
getStandardDeviationin classAbstractProcess<Normal>
-
getUpperConfidenceQuantile
double getUpperConfidenceQuantile(double stepSize, double confidence) - Specified by:
getUpperConfidenceQuantilein classAbstractProcess<Normal>
-
getVariance
double getVariance(double stepSize) - Specified by:
getVariancein classAbstractProcess<Normal>
-