search for: l_star

Displaying 1 result from an estimated 1 matches for "l_star".

Did you mean: l_start
2010 Jun 18
1
12th Root of a Square (Transition) Matrix
...rans_matrix)$vectors # create a diagonalized matrix of the eigenvalues of the transition matrix L <- diag(eigen(trans_matrix)$values) # calculate inverse of matrix of eigenvectors of the transition matrix X_inv <- solve(X) # calculate the 12th root of the eigenvalues in the diagonal matrix L_star <- L ^ (1/12) # calculate the 12th root of the transition matrix nth_root <- X_inv %*% L_star %*% X ------ END PASTE ------ References: [1] Hull, John. Risk Management and Financial Institutions. Prentice Hall, 2007.