Nothing
## NOTA BENE: In Matlab, there's the function balance(.) which
## calls LAPACK's dgebal *AND* which has the option to also return the
## transformation *diagonal* matrix D , not just the transformed matrix.
balance <- function(A, job = c("B", "N", "P","S")) {
if(!is.atomic(A)) A <- as(A, "matrix")
job <- match.arg(job)
if(is.numeric(A) || is.logical(A))
.Call(R_dgebal, A, job)
else if(is.complex(A))
.Call(R_zgebal, A, job)
else stop("invalid matrix type ", typeof(A))
}
## dgebal <- balance ## till
## 2020-07-21: Finally deprecated:
dgebal <- function(A, job = c("B","N", "P","S")) {
.Deprecated("balance")
.Call("R_dgebal", A, match.arg(job))
}
## Not exported, used to make 'R CMD check <pkg>' be faster *or* more extensive:
doExtras <- function(int = interactive()) {
int || nzchar(Sys.getenv("R_expm_check_extra")) ||
identical("true", unname(Sys.getenv("R_PKG_CHECKING_doExtras")))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.