Rfast (version 1.7.3)

Equality of objects: Equality of objects

Description

Equality of objects.

Usage

all_equals(x, y)

Arguments

x
A Matrix, List, Dataframe or Vector.
y
A Matrix, List, Dataframe or Vector.

Value

A boolean (TRUE/FALSE) value which represents if the items x and y are equal.

See Also

mvbetas, correls, univglms, colsums, colVars

Examples

Run this code
x <- matrix( rnorm(100 * 1000), ncol = 1000 )
y <- matrix( rnorm(100 * 1000), ncol = 1000 )
all_equals(x,y) 
all_equals(x,x)

Run the code above in your browser using DataLab