Module net.finmath.lib
Class TermStructCovarianceModelFromLIBORCovarianceModel
java.lang.Object
net.finmath.montecarlo.interestrate.models.covariance.TermStructCovarianceModelFromLIBORCovarianceModel
- All Implemented Interfaces:
TermStructureFactorLoadingsModel
public class TermStructCovarianceModelFromLIBORCovarianceModel
extends Object
implements TermStructureFactorLoadingsModel
- Version:
- 1.0
- Author:
- Christian Fries
-
Constructor Summary
ConstructorsConstructorDescriptionTermStructCovarianceModelFromLIBORCovarianceModel(AbstractLIBORCovarianceModelParametric covarianceModel)
Create a term structure covariance model model implementing TermStructureCovarianceModelInterface using a given model implementing AbstractLIBORCovarianceModelParametric. -
Method Summary
Modifier and TypeMethodDescriptiongetFactorLoading(double time, double periodStart, double periodEnd, TimeDiscretization periodDiscretization, RandomVariable[] realizationAtTimeIndex, TermStructureModel model)
Return the factor loading for a given time and a term structure period.int
-
Constructor Details
-
TermStructCovarianceModelFromLIBORCovarianceModel
public TermStructCovarianceModelFromLIBORCovarianceModel(AbstractLIBORCovarianceModelParametric covarianceModel)Create a term structure covariance model model implementing TermStructureCovarianceModelInterface using a given model implementing AbstractLIBORCovarianceModelParametric.- Parameters:
covarianceModel
- The model implementing AbstractLIBORCovarianceModelParametric.
-
-
Method Details
-
getFactorLoading
public RandomVariable[] getFactorLoading(double time, double periodStart, double periodEnd, TimeDiscretization periodDiscretization, RandomVariable[] realizationAtTimeIndex, TermStructureModel model)Description copied from interface:TermStructureFactorLoadingsModel
Return the factor loading for a given time and a term structure period. The factor loading is the vector fi such that the scalar product
fjfk = fj,1fk,1 + ... + fj,mfk,m
is the instantaneous covariance of the component j and k. With respect to simulation time t, this method uses a piece wise constant interpolation, i.e., it calculates t_i such that t_i is the largest point ingetTimeDiscretization
such that t_i ≤ t . The component here, it given via a double T which may be associated with the LIBOR fixing date. With respect to component time T, this method uses a piece wise constant interpolation, i.e., it calculates T_j such that T_j is the largest point ingetTimeDiscretization
such that T_j ≤ T .- Specified by:
getFactorLoading
in interfaceTermStructureFactorLoadingsModel
- Parameters:
time
- The time t at which factor loading is requested.periodStart
- Period start of the component.periodEnd
- Period end of the component.periodDiscretization
- The period discretization associated with the realizationAtTimeIndexrealizationAtTimeIndex
- The realization of the stochastic process (may be used to implement local volatility/covariance/correlation models).model
- The term structure model.- Returns:
- The factor loading fi(t).
-
getNumberOfFactors
public int getNumberOfFactors()- Specified by:
getNumberOfFactors
in interfaceTermStructureFactorLoadingsModel
- Returns:
- the numberOfFactors
-