assert {matlab2r} | R Documentation |
Assert if condition is true
Description
Throw error if condition false
Usage
assert(cond, msg = "Assertion failed.", A = NULL)
Arguments
cond |
Logical test |
msg |
Error message to be displayed if |
A |
values to format |
Value
The error message if cond == FALSE
, nothing otherwise
Author(s)
Waldir Leoncio
Examples
minVal <- 7
x <- 26
assert(minVal < x) # should return nothing
maxVal <- 13
## Not run:
assert((minVal < x) && (x < maxVal))
assert(x == "a", "x is %s", class(x))
## End(Not run)
[Package matlab2r version 1.5.0 Index]