Multiplies an expression by
NEGATE(val)
val |
- |
A scalar, series or table. |
A scalar, series, or table.
negate({1, 2, 3, 4, 0})
returns a series {-1, -2, -3, -4, 0}.
Equivalent to (-val), the arithmetic negative of val.
&& || ! AND OR NOT XOR (Logical Operators)