matrix {gmp}R Documentation

Matrix manipulation with gmp

Description

Overload of all standard tools usefull for matrix manipulation adapted to large numbers.

Usage

matrix.bigz(data = NA, nrow = 1, ncol = 1, byrow = FALSE, dimnames = NULL, mod = NA,...)

Arguments

data An optional data vector
nrow the desired number of rows
ncol the desired number of columns
byrow logical. If 'FALSE' (the default) the matrix is filled by columns, otherwise the matrix is filled by rows.
dimnames Not implemented
mod Optional modulus
... Not used

Details

Extract function is the same use for vector or matrix. Then, x[i] return same value as x[i,].

Special features concerning bigz class: modulus can be

Value

A matrix of class bigz or bigq

Author(s)

Antoine Lucas

See Also

Solving linear algebra system solve.bigz; matrix


[Package gmp version 0.4-10 Index]