powered by
Solve a system of equations or invert a float matrix.
# S4 method for float32 solve(a, b, ...)
A float matrix if inverting. If solving a system, a float vector if given one "right hand side", and a float matrix otherwise (just like R).
A float vector/matrix.
Ignored.
library(float) s = flrunif(10, 3) cp = crossprod(s) solve(cp) y = fl(1:3) solve(cp, y)
Run the code above in your browser using DataLab