Description Usage Arguments Value Examples
View source: R/identicalMatrix.R
Test whether two matrices have the same numerica values given certain accuracy
1 | identicalMatrixValue(x, y, epsilon = 1e-12)
|
x |
a matrix |
y |
another matrix |
epsilon |
accuracy threshold: absolute differences below this threshold is ignored |
Logical
1 2 3 4 5 6 7 | set.seed(1887); x <- matrix(rnorm(1000), nrow=10)
set.seed(1887); y <- matrix(rnorm(1000), nrow=10)
set.seed(1882); z <- matrix(rnorm(1000), nrow=10)
stopifnot(identicalMatrixValue(x,y))
stopifnot(!identicalMatrixValue(x,y+1E-5))
stopifnot(!identicalMatrixValue(x,y-1E-5))
stopifnot(!identicalMatrixValue(x,z))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.