Next: minimizer() Up: Mathematical Macros Help File Previous: mathhelp()   Contents

matsqrt()

Usage:
matsqrt(A [, symmetric:T or [lower:T]), square positive semi-definite
   matrix A with no MISSING values



Keywords: matrices
                                  Usage
B <- matsqrt(A) computes a matrix square root B of a positive
semi-definite REAL matrix A with no MISSING values.  B satisfies
B' %*% B = A.  B can also be computed by cholesky(A).

B <- matsqrt(A, lower:T) returns the lower triangular matrix square
root of A.

B <- matsqrt(A, symmetric:T) returns the symmetric matrix square
root of A.  B satisfies B %*% B = A

                             Cross reference
See also cholesky().


Gary Oehlert 2006-01-30