sm: Convert a matrix or sparse matrix into the sparse formate...

Description Usage Arguments Value Author(s) Examples

Description

Convert a matrix or sparse matrix into the sparse format used by INLA (dgTMatrix)

Usage

1
2
 inla.as.sparse(...)
 inla.as.dgTMatrix(A, unique = TRUE, na.rm = FALSE, zeros.rm = FALSE)

Arguments

...

The arguments. The matrix or sparse matrix, and the additonal arguments

A

The matrix

unique

Logical. If TRUE, then ensure that the internal representation is unique and there are no duplicated entries. (Do not change this unless you know what you are doing.)

na.rm

Replace NA's in the matrix with zeros.

zeros.rm

Remove zeros in the matrix.

Value

inla.as.sparse and inla.as.dgTMatrix is the same function. The returned value is a sparse matrix in the dgTMatrix-format.

Author(s)

Havard Rue hrue@r-inla.org

Examples

1
2
 A = matrix(1:9, 3, 3)
 inla.as.sparse(A)

inbo/INLA documentation built on Dec. 6, 2019, 9:51 a.m.

Related to sm in inbo/INLA...