Solve: solve

35-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

## Not run: 
library(MPCR)

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

## End(Not run)

MPCR documentation built on Aug. 23, 2026, 5:10 p.m.

Related to Solve in MPCR...