|
In mathematics, a unary operation is an operation with only one operand, i.e. an operation with a single input, or in other words, a function of one variable (for the terminology see also operators versus functions). Common notations are prefix notation (+, −, not), postfix notation (factorial: n!), and functional notation (sin x or sin (x)). In the case of the square root a horizontal bar over the argument extending the square root sign can indicate the extent of the argument, so that parentheses can be dispensed with.
Unary Negative and PositiveAs unary operations have only one oprand they are evaluated before other operations containing them are. In this example using addition: 3 − −2 Here the first '−' represents the binary subtraction operation, while the second '−' represents the unary negation of the two, a clearer way to write the expression would be: 3 − (−2) = 5 Technically there is also a unary positive but it is not needed since we assume a value to be positive: (+2) = 2 Unary positive does not change the sign of a negative operation: (+(−2)) = (−2) In the case a unary negative is needed to change the sign: (−(−2)) = (+2) Examples of Unary operations
Computer programmingUnary operators (called "monadic" in APL) are also used in programming languages. C family of languagesIn the C family of languages, the following operators are unary:
Other languagesWindows PowerShell
Usage of Incremental and Decremental operatorsIn most programming languages, incremental and decremental operators can be preffixed and suffixed to the variable. The preffix and suffix can be useful when manipulating variables. A suffixed operation increments the value after it has been called. Example 1int i = 0; printf (" %d \n %d ", i++, i++); Output: 1 0 Whereas a prefixed operation will increment the value before it has been called. Example 2int i = 0; printf (" %d \n %d ", ++i, ++i); Output: 2 1 The usage of incremental and decremental operators is usually found in For loops. $ in the Unix shellIn Unix shell scripting (usually bash) and other utilities such as Makefiles, the "$" is a unary operator that translates the name of a variable into its contents. Many people confuse this with a sigil (as used in PHP/Perl), but it is properly a unary operator for lexical indirection, similar to the * indirection operator for pointers in C. (This is why bash only uses $ when "reading" from variables, but not when "writing" to them.) See also |
This article is from Wikipedia. All text is available under the terms of the GNU Free Documentation License.
Mercedes Car
This site monitored by SitePinger.net