View source: R/certification.R
| alpha_beta | R Documentation |
Generalized dense-pencil and generalized Schur results store eigenvalues in
homogeneous form as alpha / beta; generalized SVD results use the same
alpha/beta convention for generalized singular values. alpha_beta()
exposes those coordinates along with the finite/infinite/undefined
classification computed by eigencore.
alpha_beta(x, ...)
x |
An eigencore result with homogeneous |
... |
Reserved for future methods. |
A list containing alpha, beta, and any available values,
classification, finite, infinite, and undefined fields. Results
that record how the finite/infinite/undefined labels were decided also
include a classification_policy list with the policy name, the
tolerance, the per-coordinate zero thresholds, and the pencil norms used
for norm-scaled classification.
A <- diag(c(2, 3, 0))
B <- diag(c(1, 0, 0))
fit <- eig_full(A, B = B, structure = general())
alpha_beta(fit)$classification
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.