Scilab 5.5.0
      
      - Aide de Scilab
 - Fonctions Elémentaires
 - Trigonométrie
 - acos
 - acosd
 - acosh
 - acoshm
 - acosm
 - acoth
 - asec
 - asecd
 - asech
 - asin
 - asind
 - asinh
 - asinhm
 - asinm
 - atand
 - atanhm
 - atanm
 - cos
 - cosd
 - cosh
 - coshm
 - cosm
 - cotd
 - cotg
 - coth
 - cothm
 - csc
 - cscd
 - sec
 - secd
 - sech
 - sin
 - sind
 - sinh
 - sinhm
 - sinm
 - tan
 - tanh
 - tanhm
 - tanm
 - acot
 - acotd
 - acsc
 - acscd
 - acsch
 - atan
 - atanh
 - csch
 - csgn
 - sinc
 - tand
 
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
csgn
returns the sign of a vector of real of complex values
Calling Sequence
s = csgn(z)
Arguments
- z
 a vector of values on which we want to compute the sign
- s
 if the real part is not equal to zero:
+1if the real part of an element is positive-1if the real part of an element is negative
If the real part is equal to zero:
+1if the imaginary part of an element is positive-1if the imaginary part of an element is negative
if the element is equal to zero, then returns
%nan
Description
The csgn function returns the sign of a vector of real of complex values z.
Examples
A = [1 1+%i 0 -1 1-%i -1-%i]; csgn(A)
| Report an issue | ||
| << csch | Trigonométrie | sinc >> |