Solve: solve

36-SolveR Documentation

solve

Description

Solve a system of equations or invert an MPCR matrix.

Usage

## S4 method for signature 'Rcpp_MPCR'
solve(a, b = NULL, ...)

Arguments

a, b

An MPCR objects.

...

Ignored.

Value

Solves the equation AX=B .and if B=NULL t(A) will be used.

Examples


library(MPCR)

x <- as.MPCR(1:20,4,5,"double")
solve(x)


MPCR documentation built on April 13, 2025, 5:08 p.m.

Related to Solve in MPCR...