omxCheckSetEquals {OpenMx} | R Documentation |
This function tests whether two vectors contain the same elements.
omxCheckSetEquals(...)
... |
arguments forwarded to expect_setequal |
Performs the ‘setequal’ function on the two arguments. If the two arguments do not contain the same elements, then an error will be thrown.
The OpenMx User's guide can be found at https://openmx.ssri.psu.edu/documentation/.
omxCheckCloseEnough
, omxCheckWithinPercentError
, omxCheckIdentical
, omxCheckTrue
, omxCheckEquals
omxCheckSetEquals(c(1, 1, 2, 2, 3), c(3, 2, 1))
omxCheckSetEquals(matrix(1, 1, 1), matrix(1, 3, 3))
# Throws an error
try(omxCheckSetEquals(c(1, 2, 3, 4), c(2, 1, 3)))