Multivariate Analysis Package  0.3
A multivariate distributions analysis package
 All Classes Namespaces Functions Pages
Public Member Functions | List of all members
Multivariate::tCopula Class Reference

Student's t Copula Distribution. More...

#include <tCopula.h>

Inheritance diagram for Multivariate::tCopula:
Multivariate::AbstarctCopula

Public Member Functions

 tCopula (unsigned int Dimension=2U, unsigned int DegFreedom=1U)
 Constructs a standard t copula. More...
 
 tCopula (unsigned int Dimension, unsigned int DegFreedom, const Eigen::MatrixXd &ScalMatr)
 Construct a t copula with the given parameters. More...
 
Eigen::MatrixXd ExtractSamples (unsigned int NumSamples) const
 Generates multiple simulations from the copula. More...
 
double GetCumulativeDesity (const Eigen::VectorXd &Coordinates) const
 Computes the copula function in correspondence of the supplied coordinates. More...
 
unsigned int GetDegreesOfFreedom () const
 Get the degrees of freedom of the distribution. More...
 
double GetDensity (const Eigen::VectorXd &Coordinates) const
 Computes the copula density function in correspondence of the supplied coordinates. More...
 
Eigen::VectorXd GetQuantile (double Prob) const
 Computes the inverse copula function in correspondence of the supplied probability. More...
 
const Eigen::MatrixXd & GetScaleMatrix () const
 Get the standardized scale matrix of the distribution. More...
 
bool SetDegreesOfFreedom (unsigned int a)
 Set the degrees of freedom of the distribution. More...
 
bool SetScaleMatrix (const Eigen::MatrixXd &ScalMatr)
 Set the scale matrix of the distribution. More...
 
bool SetScaleMatrix (const std::vector< double > &mVect, bool RowWise=true)
 Set the scale matrix of the distribution. More...
 
- Public Member Functions inherited from Multivariate::AbstarctCopula
Eigen::RowVectorXd ExtractSample () const
 Generates a single simulation from the copula. More...
 
std::map< unsigned int,
std::vector< double > > 
ExtractSamplesMap (unsigned int NumSamples) const
 Generates multiple simulations from the copula. More...
 
std::vector< double > ExtractSampleVector () const
 Generates a single simulation from the copula. More...
 
double GetCumulativeDesity (const std::vector< double > &Coordinates) const
 Computes the copula function in correspondence of the supplied coordinates. More...
 
unsigned int GetCurrentSeed () const
 Get the random number generator seed. More...
 
double GetDensity (const std::vector< double > &Coordinates) const
 Computes the probability density function of the copula in correspondence of the supplied coordinates. More...
 
unsigned int GetDimension () const
 Get the dimensionality of the copula. More...
 
std::vector< double > GetQuantileVector (double Prob) const
 Computes the inverse copula function in correspondence of the supplied probability. More...
 
bool IsValid () const
 Check if the copula is valid. More...
 
bool SetDimension (unsigned int Dimension)
 Set the dimensionality of the copula. More...
 
void SetRandomSeed (unsigned int NewSeed)
 Set the random number generator seed. More...
 
double * GetQuantileArray (double Prob)
 Computes the inverse copula function in correspondence of the supplied probability. More...
 
double GetCumulativeDesity (double *Coordinates) const
 Computes the copula function in correspondence of the supplied coordinates. More...
 
double GetDensity (double *Coordinates) const
 Computes the probability density function of the copula in correspondence of the supplied coordinates. More...
 
double * ExtractSampleArray () const
 Generates a single simulation from the copula. More...
 
double ** ExtractSamplesMatix (unsigned int NumSamples) const
 Generates a single simulation from the copula. More...
 

Detailed Description

Student's t Copula Distribution.

This class provides the functionality of calculating the probability density value, cumulative probability density value, inverse cumulative probability density and generate random samples from a Student's t copula.

Defining:

We can define \( \boldsymbol{\rho}(\boldsymbol{\Sigma})=\begin{bmatrix} 1 & \cdots & \frac{\sigma_{1,k}}{\sigma_1 \sigma_k}\\ \vdots & \ddots & \vdots \\ \frac{\sigma_{k,1}}{\sigma_k \sigma_1} & \cdots & 1 \end{bmatrix} \)
The t copula distribution funtion is defined as: \( C(\textbf{x})=\t_{v , \rho}(\t_v^{-1}(u_1), \cdots , \t_v^{-1}(u_k)) \)

If you construct multiple instances of this class, to avoid the generated samples to be the same, you should supply a different seed. To do so, for example, you can call MyDistribution.SetRandomSeed(MyDistribution.GetCurrentSeed()+1U);

Please refer to the Examples page for usage examples.

Remarks
This class is re-entrant
Date
November 2013
License
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

Here, you can find a copy of the GNU Lesser General Public License. Alternatively, see gnu.org.

Constructor & Destructor Documentation

Multivariate::tCopula::tCopula ( unsigned int  Dimension = 2U,
unsigned int  DegFreedom = 1U 
)
inline

Constructs a standard t copula.

Parameters
DimensionThe dimensionality of the copula

Construct a t copula with variance-covariance matrix set to the identity matrix.

In case The Dimension less than 2 or the degrees of freedom are 0, the class will be considered invalid (it can be checked using IsValid()) and won't produce any result until the problem is fixed.

If dimension is unspecified, a bivariate copula with 1 degree of freedom is constructed

tCopula::tCopula ( unsigned int  Dimension,
unsigned int  DegFreedom,
const Eigen::MatrixXd &  ScalMatr 
)

Construct a t copula with the given parameters.

Parameters
DimensionThe dimensionality of the copula
DegFreedomThe degrees of freedom of the copula
ScalMatrThe scale matrix

Construct a t copula distribution.

The scale matrix is standardized to have unitary diagonal

In case:

  • The Dimension is less than 2
  • The degrees of freedom are 0
  • The scale matrix is not square
  • The scale matrix is not symmetric
  • The scale matrix is not semi-positive definite
  • The scale matrix has a number of rows different from the Dimension

The class will be considered invalid (it can be checked using IsValid()) and won't produce any result until the problem is fixed.

Member Function Documentation

Eigen::MatrixXd Multivariate::tCopula::ExtractSamples ( unsigned int  NumSamples) const
inlinevirtual

Generates multiple simulations from the copula.

Parameters
NumSamplesThe number of simulation to run
Returns
A matrix with columns equal to the dimensionality of the distribution and rows equal to the number of simulations

This function generates NumSamples simulation from the current copula and returns them in matrix form.

If NumSamples is 0 or the copula is invalid, a null matrix is returned

Implements Multivariate::AbstarctCopula.

double tCopula::GetCumulativeDesity ( const Eigen::VectorXd &  Coordinates) const
virtual

Computes the copula function in correspondence of the supplied coordinates.

Parameters
CoordinatesA vector containing the coordinates of the point for which the pdf should be computed
Returns
The value of the copula function

This function computes the probability density function of the current copula associated with the given coordinates.

The coordinates must all be in the interval (0,1)

If the number of elements in Coordinates is different from the dimensionality of the distribution or the distribution is invalid, -1 is returned

Implements Multivariate::AbstarctCopula.

unsigned int Multivariate::tCopula::GetDegreesOfFreedom ( ) const
inline

Get the degrees of freedom of the distribution.

Returns
The current degrees of freedom of the distribution
See Also
SetDegreesOfFreedom()
double tCopula::GetDensity ( const Eigen::VectorXd &  Coordinates) const
virtual

Computes the copula density function in correspondence of the supplied coordinates.

Parameters
CoordinatesA vector containing the coordinates of the point for which the pdf should be computed
Returns
The value of the copula density function

This function computes the probability density function of the current copula associated with the given coordinates.

The coordinates must all be in the interval (0,1)

If the number of elements in Coordinates is different from the dimensionality of the distribution or the distribution is invalid, -1 is returned

Implements Multivariate::AbstarctCopula.

Eigen::VectorXd tCopula::GetQuantile ( double  Prob) const
virtual

Computes the inverse copula function in correspondence of the supplied probability.

Parameters
ProbThe probability for which the corresponding quantile must be found
Returns
A vector containing the coordinates of the quantile in the intervall [0;1]

This function computes the inverse cumulative density function of the current distribution associated with the given probability.

The solution is not unique.
Generally the system of equations \( C^{-1}(Coordinates_1 \cdots Coordinates_k)=Prob \) has k-1 degrees of freedom, where k is the dimensionality of the distribution.
The additional restriction imposed to get to an unique solution is that each coordinate has equal distance from it's mean.

If the coordinates supplied have any component that is greater than 1 or less than 0 or the distribution is invalid, an empty vector is returned.

Implements Multivariate::AbstarctCopula.

const Eigen::MatrixXd& Multivariate::tCopula::GetScaleMatrix ( ) const
inline

Get the standardized scale matrix of the distribution.

Returns
The current scale matrix of the distribution
See Also
SetScaleMatrix(const Eigen::MatrixXd&)
SetScaleMatrix(const std::vector<double>&,bool)
bool Multivariate::tCopula::SetDegreesOfFreedom ( unsigned int  a)

Set the degrees of freedom of the distribution.

Parameters
aThe number of degrees of freedom of the distribution
Returns
A boolean determining if the degrees of freedom of the distribution were changed successfully

This function tries to set the degrees of freedom of the distribution to the new ones.

In case a is less than 1 the degrees of freedom of the distribution will not be changed and this function will return false

See Also
GetDegreesOfFreedom()
bool tCopula::SetScaleMatrix ( const Eigen::MatrixXd &  ScalMatr)

Set the scale matrix of the distribution.

Parameters
ScalMatrthe new variance scale matrix of the distribution
Returns
A boolean determining if the scale matrix of the distribution was changed successfully

This function tries to set the scale matrix of the distribution to the new one.

The scale matrix is then standardized to have unitary diagonal

In case:

  • The scale matrix is not square
  • The scale matrix is not symmetric
  • The scale matrix is not semi-positive definite
  • The scale matrix has a number of rows different from the Dimension

The scale matrix of the distribution will not be changed and this function will return false

See Also
GetScaleMatrix()
bool tCopula::SetScaleMatrix ( const std::vector< double > &  mVect,
bool  RowWise = true 
)

Set the scale matrix of the distribution.

Parameters
mVecta vector containing the elements of the new scale matrix of the distribution
RowWiseif it's set to true (the default) the matrix will be filled by row. If it's false it will be filled by columns
Returns
A boolean determining if the scale matrix of the distribution was changed successfully

This function tries to set the scale matrix of the distribution to the new one.

Constructs a square matrix with number of rows equal to the dimensionality of the distribution, it is then filled with the values supplied in order according to the RowWise parameter

The Variance-Covariance matrix is then standardized to have unitary diagonal

In case:

  • The vector size is different from the square of the distribution dimensionality
  • The variance-covariance is not symmetric
  • The variance-covariance is not semi-positive definite
  • The variance-covariance has a number of rows different from the Dimension

The variance covariance matrix of the distribution will not be changed and this function will return false

See Also
GetScaleMatrix()