| solve.eigencore_eigen_problem | R Documentation |
S3 method that runs the planned solver for an eigenproblem built by
eigen_problem(). Most users call eig_partial(), which constructs the
problem and dispatches here; call solve() directly when you want to build
a problem once and reuse or inspect it. Returns a certified partial
eigendecomposition.
## S3 method for class 'eigencore_eigen_problem'
solve(
a,
b,
k,
method = auto(),
tol = 1e-08,
maxit = NULL,
vectors = TRUE,
certify = TRUE,
allow_dense_fallback = c("auto", "never", "always"),
...
)
a |
Eigencore eigen problem object. |
b |
Unused second argument reserved by the base |
k |
Number of eigenpairs to compute. |
method |
Solver method descriptor. |
tol |
Convergence and certification tolerance. |
maxit |
Optional iteration limit. |
vectors |
Whether to compute vectors. |
certify |
Whether to compute certification diagnostics. |
allow_dense_fallback |
Dense fallback policy. |
... |
Reserved for future solver options. |
An eigencore_eigen_result.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.