Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.0 - Português

Change language to:
English - Français - 日本語 - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Ajuda do Scilab >> Funções Elementares > Trigonometria > csgn

csgn

returns the sign of a vector of real of complex values

Syntax

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:

  • +1 if the real part of an element is positive

  • -1 if the real part of an element is negative

If the real part is equal to zero:

  • +1 if the imaginary part of an element is positive

  • -1 if 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)

See also

  • sign — signum function
  • signm — função do sinal da matriz
Report an issue
<< csch Trigonometria sec >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Feb 25 08:52:28 CET 2020