Type | Description |
Function or value | Description |
|
Given A[n,n] real symmetric positive definite.
Example
|
|
Compute the determinant of a matrix by performing an LU decomposition since if A = P'LU,
Example
|
Full Usage:
EVD m
Parameters:
'a
Returns: 'b
|
Compoutes for an N-by-N real nonsymmetric matrix A, the
eigenvalue decomposition eigenvalues and right eigenvectors.
The right eigenvector v(j) of A satisfies
A * v(j) = lambda(j) * v(j)
where lambda(j) is its eigenvalue.
The computed eigenvectors are normalized to have Euclidean norm
equal to 1 and largest component real. Uses the LAPACK subroutine dgeev with arguments JOBVR = 'V' and JOBVL = 'N'
|
|
Compute eigenvalues and eigenvectors for a real symmetric matrix.
Example
|
Full Usage:
EigenValues m
Parameters:
'a
-
Returns: 'b
|
Compute eigenvalues of a square real matrix.
Example
|
Full Usage:
EigenValuesWhenSymmetric a
Parameters:
'a
-
Returns: 'b
|
Compute eigenvalues for a real symmetric matrix.
Example
|
|
|
Example
|
|
Example
|
|
|
Given A[m,n] and B[m] solves AX = B for X[n].
Example
|
|
Given A[m,n] and b[m] solves AX = b for X[n].
Example
|
Given A[m,n] finds Q[m,m] and R[k,n] where k = min m n.
Example
|
|
Returns the full Singular Value Decomposition of the input MxN matrix
A : A = U * SIGMA * V**T in the tuple (S, U, V**T),
where S is an array containing the diagonal elements of SIGMA.
|
|
|
|
|
|
|
|
|
|
|
|
|
computes the hat matrix by the QR decomposition of the designmatrix used in ordinary least squares approaches
Example
|
|
computes the leverage directly by QR decomposition of the designmatrix used in ordinary least squares approaches
Example
|
|
computes the hat matrix by the QR decomposition of the designmatrix used in ordinary least squares approaches
Example
|
|
Example
|
|
Example
|
|
Example
|
Returns the thin Singular Value Decomposition of the input MxN matrix A
A = U * SIGMA * V**T in the tuple (S, U, V),
where S is an array containing the diagonal elements of SIGMA.
The first min(M,N) columns of U and the first min(M,N) rows of V**T are returned in the arrays U and VT;
|