geMatrix-class {Matrix}R Documentation

General S4 Matrix class

Description

A general, numeric matrix in the S4 Matrix representation

Objects from the Class

Objects can be created by calls of the form new("geMatrix", ...) or, more commonly, by coercion from the matrix class.

Slots

x:
Object of class "numeric" - the numeric values contained in the matrix, in column-major order.
Dim:
Object of class "integer" - the dimensions of the matrix - must be an integer vector with exactly two non-negative values.
rcond:
Object of class "numeric" - an estimate of the reciprocal of the condition number, if it has been computed at some point.
factorization:
Object of class "list" - a list of factorizations of the matrix.

Methods

Schur
signature(x = "geMatrix", vectors = "logical"): ...
Schur
signature(x = "geMatrix", vectors = "missing"): ...
coerce
signature(from = "geMatrix", to = "matrix"): ...
coerce
signature(from = "matrix", to = "geMatrix"): ...
coerce
signature(from = "matrix", to = "geMatrix")
crossprod
signature(x = "geMatrix", y = "geMatrix"): ...
crossprod
signature(x = "geMatrix", y = "matrix"): ...
crossprod
signature(x = "geMatrix", y = "missing"): ...
crossprod
signature(x = "geMatrix", y = "numeric"): ...
diag
signature(x = "geMatrix"): ...
dim
signature(x = "geMatrix"): ...
lu
signature(x = "geMatrix"): ...
norm
signature(x = "geMatrix", type = "character"): ...
norm
signature(x = "geMatrix", type = "missing"): ...
rcond
signature(x = "geMatrix", type = "character"): ...
rcond
signature(x = "geMatrix", type = "missing"): ...
solve
signature(a = "geMatrix", b = "geMatrix"): ...
solve
signature(a = "geMatrix", b = "missing"): ...

See Also

Matrix-class, trMatrix-class, syMatrix-class


[Package Contents]