Fast version of mru. It runs mru without input checks.
fastmru(
G = NULL,
X = NULL,
B = NULL,
Z = NULL,
C = NULL,
MAXINNER = 32,
FCRIT = 0.001,
MAXITER = 65536,
DCRIT = 1e-06,
error.check = FALSE
)
B estimated regression weights
V estimated class locations
Lastinner number of iterations in the last call to STRESS
Lastfdif last difference in STRESS values in the inner loop
lastouter number of iterations in the outer loop
lastddif last difference in deviances in outer loop
deviance obtained deviance
indicator matrix of the response variable
matrix with predictor variables
starting values of the regression weights
starting values for class locations
matrix with coefficients for class points, V = ZC
maximum number of iterations in the inner loop
convergence criterion for STRESS in the inner loop
maximum number of iterations in the outer loop
convergence criterion for the deviance
extensive check validity input parameters (default = FALSE).