float (version 0.2-3)

rcond: rcond

Description

Compute matrix norm.

Usage

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

Run this code
# NOT RUN {
library(float)

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

# }

Run the code above in your browser using DataCamp Workspace