eigen: eigen

eigenR Documentation

eigen

Description

Solve a system of equations or invert a float matrix.

Usage

## S4 method for signature '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

library(float)

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

eigen(cp)


float documentation built on Feb. 16, 2023, 6:43 p.m.