Usage
read.matrix.hb(filename)
write.matrix.hb(filename = "hb.out", X, title, key, mxtype,
rhs = NULL, guess = FALSE, xsol = FALSE, ptrfmt, indfmt,
valfmt = "(1P,5D16.9)", rhsfmt = "(1P,5D16.9)")
model.matrix(object, ...)
model.response(data,type)
Arguments
filename
file name to read from or write to
data, object
an object of either matrix.csc.hb or matrix.ssc.hb
class
type
One of `"any"', `"numeric"', `"double"'. Using the either of
latter two coerces the result to have storage mode
`"double"'
X
coefficient matrix stored in csc (for unsymmetric and rectangular
matrix) or ssc (for symmetric matrix) format
title
72-character title for the matrix
key
8-character identifier for the matrix
mxtype
3-character identifier for type of the coefficient matrix;
First character: currently only "R" for real matrix is supported;
second character: "S" for symmetric, "U" for unsymmetric"
and "R" for rectangular matrix;
third character: curr
rhs
vector or matrix of right-hand-side(s) including starting guesses
and solution vectors if present stored in full storage mode
guess
logical flag for the presence of initial guess of the solutions;
if TRUE, the values of initial guess are appended to the end of
rhs
xsol
logical flag for the presence of exact solutions; if TRUE, the
values of the exact solutions are appended to the end of rhs
ptrfmt
printing format for the column pointers
indfmt
printing format for the row indices
valfmt
printing format for the values
rhsfmt
printing format for the right-hand-sides