Difference between revisions of "Sign"

 
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
= Sign(x) =
+
[[Category:Math Functions]]
  
''New to Analytica 4.2''
+
== Sign(x) ==
 +
The sign of a number.
  
The sign of a number.
+
Returns
 +
* -1 when «x» < 0
 +
* 0 when «x» = 0
 +
* 1 when «x» > 0
 +
* [[NaN]] when «x» is [[NaN]]  (with Warning)
 +
 
 +
== Library ==
 +
Math
 +
 
 +
== History ==
 +
Introduced as a built-in function in [[Analytica 4.2]] .
 +
 
 +
In Analytica 4.1 and earlier, it was common  to define Sign as a [[User-Defined Functions|user-defined function]]:
 +
:<code>Function Sign(x) := if x < 0 then -1 else if x > 0 then 1 else 0</code>
  
Returns:
+
== See Also ==
* -1 when x<0
+
* [[Abs]]
* 0 when x=0
 
* 1 when x>0
 
* [[NaN]] when x is [[NaN]] (with Warning)
 

Latest revision as of 01:40, 29 January 2016


Sign(x)

The sign of a number.

Returns

  • -1 when «x» < 0
  • 0 when «x» = 0
  • 1 when «x» > 0
  • NaN when «x» is NaN (with Warning)

Library

Math

History

Introduced as a built-in function in Analytica 4.2 .

In Analytica 4.1 and earlier, it was common to define Sign as a user-defined function:

Function Sign(x) := if x < 0 then -1 else if x > 0 then 1 else 0

See Also

Comments


You are not allowed to post comments.