ModifCorrMatrix {mistral} | R Documentation |
Modification of a correlation matrix to use in UtoX
Description
ModifCorrMatrix
modifies a correlation matrix originally defined using SPEARMAN correlation coefficients to the correlation matrix to be used in the NATAF transformation performed in UtoX
.
Usage
ModifCorrMatrix(Rs)
Arguments
Rs |
Original correlation matrix defined using SPEARMAN correlation coefficient :
|
Value
R0 |
Modified correlation matrix |
Note
The NATAF distribution is reviewed from the (normal) copula viewpoint as a particular and convenient means to describe a joint probabilistic model assuming that the normal copula fits to the description of the input X.
The normal copula is defined by a symmetric positive definite matrix R0. Even though the off-diagonal terms in this matrix are comprised in ]-1; 1[ and its diagonal terms are equal to 1, it shall not be confused with the more usual correlation matrix.
Lebrun and Dutfoy point out that the SPEARMAN (or rank) correlation coefficient is better suited to parametrize a copula because it leads to a simpler closed-form expression for \rho_{ij}
.
Author(s)
Gilles DEFAUX, gilles.defaux@cea.fr
References
M. Lemaire, A. Chateauneuf and J. Mitteau. Structural reliability, Wiley Online Library, 2009
Lebrun, R. and A. Dutfoy. A generalization of the Nataf transformation to distributions with elliptical copula. Prob. Eng. Mech., 24(2), 172-178.
-
V. Dubourg, Meta-modeles adaptatifs pour l'analyse de fiabilite et l'optimisation sous containte fiabiliste, PhD Thesis, Universite Blaise Pascal - Clermont II,2011
See Also
Examples
Dim <- 2
input.Rho <- matrix( c(1.0, 0.5,
0.5, 1.0),nrow=Dim)
input.R0 <- ModifCorrMatrix(input.Rho)
print(input.R0)