rcond {float}R Documentation

rcond

Description

Compute matrix norm.

Usage

## S4 method for signature 'float32'
rcond(x, norm = c("O", "I", "1"), triangular = FALSE, ...)

Arguments

x

A float vector/matrix.

norm

"O"-ne or "I"-nfinity norm.

triangular

Should only the lower triangle be used?

...

Additional arguments.

Value

A single float.

Examples

library(float)

s = flrunif(10, 3)
rcond(s)


[Package float version 0.3-2 Index]