View source: R/077_atoms_elementwise_logic.R
| iff | R Documentation |
Logical biconditional: x <=> y.
Returns 1 if and only if x and y have the same value.
Equivalent to Not(Xor(x, y)).
iff(x, y)
x, y |
Boolean Variables or logic expressions. |
A Not expression wrapping Xor.
implies(), Not(), And(), Or(), Xor()
## Not run:
x <- Variable(boolean = TRUE)
y <- Variable(boolean = TRUE)
expr <- iff(x, y)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.