Learn R Programming

matsbyname (version 0.6.11)

replaceNaN_byname: Replace NaN values with a value

Description

In a matrix or within matrices in a list, replace all NaN matrix values with val.

Usage

replaceNaN_byname(a, val = 0)

Value

A matrix or list of matrices in which all NaN are replaced by val.

Arguments

a

A matrix of list of matrices in which NaN will be replaced by val.

val

NaNs are replace by val.

Examples

Run this code
suppressWarnings(a <- matrix(c(1, sqrt(-1))))
replaceNaN_byname(a)
replaceNaN_byname(a, 42)

Run the code above in your browser using DataLab