Nothing
all_finite <- function(x){
stopifnot(is.numeric(x))
storage.mode(x) <- "double"
.Call("all_finite_double",x, PACKAGE="lintools")
}
check_sys <- function(A, b, neq, x ,eps){
if (!is.numeric(A)){
stop("'A' is not a numeric matrix")
}
if (!is.numeric(b)){
stop("'b' is not a numeric vector")
}
if (!missing(x) && !is.numeric(x)){
stop("'x' is not a numeric vector")
}
if ( !is.matrix(A)){
stop("'A' is not of class 'matrix'")
}
if (!missing(eps) && !all_finite(eps)){
stop("Non-finite value specified for 'eps'")
}
if (!missing(eps) && eps < 0){
stop("Negative value for 'eps' specified")
}
if (!all_finite(A)){
stop("Non-finite values detected in 'A'")
}
if (!all_finite(b)){
stop("Non-finite values detected in 'b'")
}
if (!missing(x) && !all_finite(x)){
stop("Non-finite values detected in 'x'")
}
if (nrow(A) != length(b)){
stop("Number of rows of 'A' not equal to length of 'b'")
}
if (!missing(x) && ncol(A) != length(x)){
stop("Number of columns of 'A' not equal to length of 'x'")
}
if (!missing(neq) && neq > nrow(A)){
stop("number of equations 'neq' larger than number of rows in matrix 'A'")
}
}
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.