home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 April / macformat-023.iso / Shareware City / Developers / RLaB / help / sign < prev    next >
Encoding:
Text File  |  1994-07-13  |  303 b   |  21 lines  |  [TEXT/RLAB]

  1. sign:
  2.  
  3. Synopsis: Sign function.
  4.  
  5. Syntax:    sign ( A )
  6.  
  7. Description:
  8.  
  9.     For real scalar argument, sign returns:
  10.  
  11.         1 if A > 0
  12.         0 if A == 0
  13.            -1 if A < 0
  14.  
  15.     For a complex scalar sign returns:
  16.  
  17.         A ./ abs (A)
  18.  
  19.     sign performs its operation on real and complex matrices in an
  20.     element by element fashion.
  21.