Package: bigalgebra 1.1.2

Frederic Bertrand

bigalgebra: 'BLAS' and 'LAPACK' Routines for Native R Matrices and 'big.matrix' Objects

Provides arithmetic functions for R matrix and 'big.matrix' objects as well as functions for QR factorization, Cholesky factorization, General eigenvalue, and Singular value decomposition (SVD). A method matrix multiplication and an arithmetic method -for matrix addition, matrix difference- allows for mixed type operation -a matrix class object and a big.matrix class object- and pure type operation for two big.matrix class objects.

Authors:Frederic Bertrand [cre, ctb], Michael J. Kane [aut], Bryan Lewis [aut], John W. Emerson [aut]

bigalgebra_1.1.2.tar.gz
bigalgebra_1.1.2.tar.gz(r-4.5-noble)bigalgebra_1.1.2.tar.gz(r-4.4-noble)
bigalgebra_1.1.2.tgz(r-4.4-emscripten)bigalgebra_1.1.2.tgz(r-4.3-emscripten)
bigalgebra.pdf |bigalgebra.html
bigalgebra/json (API)
NEWS

# Install 'bigalgebra' in R:
install.packages('bigalgebra', repos = 'https://cloud.r-project.org')

Bug tracker:https://github.com/fbertran/bigalgebra/issues2 issues

Pkgdown site:https://fbertran.github.io

Uses libs:
  • openblas– Optimized BLAS
  • c++– GNU Standard C++ Library v3

On CRAN:

Conda:r-bigalgebra-1.1.2(2025-03-25)

openblascpp

2.48 score 1 stars 2 packages 724 downloads 9 exports 5 dependencies

Last updated 6 months agofrom:f5a743f77b. Checks:3 OK. Indexed: no.

TargetResultLatest binary
Doc / VignettesOKMar 23 2025
R-4.5-linux-x86_64OKMar 23 2025
R-4.4-linux-x86_64OKMar 23 2025

Exports:Arithdaxpydcopydgeevdgemmdgeqrfdgesdddpotrfdscal

Dependencies:BHbigmemorybigmemory.sriRcppuuid

Citation

To cite <PACKAGE> in publications use:

Frederic Bertrand, Michael J. Kane, John Emerson and Stephen Weston(2024). 'BLAS' and 'LAPACK' Routines for Native R Matrices and 'big.matrix' Objects, R package version 1.1.2.

Michael J. Kane, John Emerson, Stephen Weston (2013). Scalable Strategies for Computing with Massive Data. Journal of Statistical Software, 55(14), 1-19.<doi:10.18637/jss.v055.i14>.

Corresponding BibTeX entries:

  @Manual{,
    title = {'BLAS' and 'LAPACK' Routines for Native R Matrices and
      'big.matrix' Objects},
    author = {Frederic Bertrand and Michael J. Kane and John Emerson
      and Stephen Weston},
    publisher = {manual},
    year = {2024},
    note = {R package version 1.1.2},
    url = {https://fbertran.github.io/bigalgebra/},
  }
  @Article{,
    title = {Scalable Strategies for Computing with Massive Data},
    author = {Michael J. Kane and John Emerson and Stephen Weston},
    journal = {Journal of Statistical Software},
    volume = {55},
    issue = {14},
    pages = {20},
    year = {2013},
    doi = {10.18637/jss.v055.i14},
  }

Readme and manuals

bigalgebra

Arithmetic routines for native R matrices and big.matrix objects

Frédéric Bertrand, Michael J. Kane, Bryan Lewis, John W. Emerson

This package provides arithmetic functions for native R matrices and bigmemory::big.matrix objects as well as functions for QR factorization, Cholesky factorization, General eigenvalue, and Singular value decomposition (SVD). A method matrix multiplication and an arithmetic method -for matrix addition, matrix difference- allows for mixed type operation -a matrix class object and a big.matrix class object- and pure type operation for two big.matrix class objects.

The package defines a number of global options that begin with bigalgebra.

They include:

Option Default value

  • bigalgebra.temp_pattern with default matrix_
  • bigalgebra.tempdir with default tempdir
  • bigalgebra.mixed_arithmetic_returns_R_matrix with default TRUE
  • bigalgebra.DEBUG with default FALSE

The bigalgebra.tempdir option must be a function that returns a temporary directory path used to big matrix results of BLAS and LAPACK operations. The deault value is simply the default R tempdir function.

The bigalgebra.temp_pattern is a name prefix for file names of generated big matrix objects output as a result of BLAS and LAPACK operations.

The bigalgebra.mixed_arithmetic_returns_R_matrix option determines whether arithmetic operations involving an R matrix or vector and a big.matrix matrix or vector return a big matrix (when the option is FALSE), or return a normal R matrix (TRUE).

The package is built, by default, with R's native BLAS libraries, which use 32-bit signed integer indexing. The default build is limited to vectors of at most 2^31 - 1 entries and matrices with at most 2^31 - 1 rows and 2^31 - 1 columns (note that standard R matrices are limtied to 2^31 - 1 total entries).

The package includes a reference BLAS implementation that supports 64-bit integer indexing, relaxing the limitation on vector lengths and matrix row and column limits. Installation of this package with the 64-bit reference BLAS implementation may be performed from the command-line install:

REFBLAS=1 R CMD INSTALL bigalgebra

where bigalgebra is the source package (for example, bigalgebra_0.9.0.tar.gz).

The package may also be build with user-supplied external BLAS and LAPACK libraries, in either 32- or 64-bit varieties. This is an advanced topic that requires additional Makevars modification, and may include adjustment of the low-level calling syntax depending on the library used.

Feel free to contact us for help installing and running the package.

This website and these examples were created by F. Bertrand.

Maintainer: Frédéric Bertrand frederic.bertrand@utt.fr.

Installation

You can install the released version of bigalgebra from CRAN with:

install.packages("bigalgebra")

You can install the development version of bigalgebra from github with:

devtools::install_github("fbertran/bigalgebra")

Examples

library("bigmemory")
A <- bigmemory::big.matrix(5,4,init = 1)
B <- bigmemory::big.matrix(4,4,init = 2)

C <- A %*% B       # Returns a new big.matrix object
D <- A[] %*% B[]   # Compute the same thing in R

print(C - D)       # Compare the results (subtraction of an R matrix from a
#>      [,1] [,2] [,3] [,4]
#> [1,]    0    0    0    0
#> [2,]    0    0    0    0
#> [3,]    0    0    0    0
#> [4,]    0    0    0    0
#> [5,]    0    0    0    0
                   # big.matrix)

# The next example illustrates mixing R and big.matrix objects. It returns by
# default (see # options("bigalgebra.mixed_arithmetic_returns_R_matrix")
D <- matrix(rnorm(16),4)
E <- A %*% D

Help Manual

Help pageTopics
Arithmetic routines for native R matrices and big.matrix objects.bigalgebra-package bigalgebra
Class '"big.matrix"' arithmetic methods%*%,big.matrix,big.matrix-method %*%,big.matrix,matrix-method %*%,matrix,big.matrix-method Arith,big.matrix,big.matrix-method Arith,big.matrix,matrix-method Arith,big.matrix,numeric-method Arith,matrix,big.matrix-method Arith,numeric,big.matrix-method
BLAS daxpy functionalitydaxpy
Copy a vector.dcopy
DGEEV computes eigenvalues and eigenvectors.dgeev
Matrix Multiplydgemm
QR factorizationdgeqrf
DGESDD computes the singular value decomposition (SVD) of a real matrix.dgesdd
Cholesky factorizationdpotrf
Scales a vector by a constant.dscal