not
not logical, ~ operator
📝Syntax
C = not(A)
C = ~A
📥Input Arguments
Parameter Description
A a variable
📤Output Arguments
Parameter Description
C result of ~A
📄Description

C = not(A) performs not logical ~A.

💡Examples
M = false(3, 3);
~M
🔗See Also
oranyall
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub