float (version 0.2-3)

eigen: eigen

Description

Solve a system of equations or invert a float matrix.

Usage

# S4 method for float32
eigen(x, symmetric, only.values = FALSE,
  EISPACK = FALSE)

Arguments

x

A float vector/matrix.

symmetric

Is the matrix symmetric? If not, it will be tested for symmetry with isSymmetric(). Note that only symmetric matrices are supported at this time.

only.values

Should only the values (and not the vectors) be returned?

EISPACK

Ignored.

Value

A list containing the values and optionally vectors, each stored as floats.

Examples

Run this code
# NOT RUN {
library(float)

s = flrunif(10, 3)
cp = crossprod(s)

eigen(cp)

# }

Run the code above in your browser using DataLab