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
Constructors Constructor Description TermStructCovarianceModelFromLIBORCovarianceModel(AbstractLIBORCovarianceModelParametric covarianceModel)Create a term structure covariance model model implementing TermStructureCovarianceModelInterface using a given model implementing AbstractLIBORCovarianceModelParametric.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RandomVariable[]getFactorLoading(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.intgetNumberOfFactors()
-
-
-
Constructor Detail
-
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 Detail
-
getFactorLoading
public RandomVariable[] getFactorLoading(double time, double periodStart, double periodEnd, TimeDiscretization periodDiscretization, RandomVariable[] realizationAtTimeIndex, TermStructureModel model)
Description copied from interface:TermStructureFactorLoadingsModelReturn 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 ingetTimeDiscretizationsuch 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 ingetTimeDiscretizationsuch that T_j ≤ T .- Specified by:
getFactorLoadingin 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:
getNumberOfFactorsin interfaceTermStructureFactorLoadingsModel- Returns:
- the numberOfFactors
-
-