Scilab 5.5.2
- Scilabヘルプ
- Elementary Functions
- bitwise
- Complex
- Discrete mathematics
- elementarymatrices
- Exponential
- Floating point
- Integer representation
- matrixmanipulation
- matrixoperations
- searchandsort
- setoperations
- signalprocessing
- symbolic
- Trigonometry
- and
- &
- cat
- cell2mat
- cellstr
- iscolumn
- isempty
- isequal
- ismatrix
- isrow
- isscalar
- issquare
- isvector
- lstsize
- modulo
- ndims
- nthroot
- num2cell
- or
- |
- sign
- size
- unwrap
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
sign
符号関数
呼び出し手順
X=sign(A)
引数
- A
実数または複素数の行列
- X
実数または複素数の行列
説明
X=sign(A)
は
A(i,j)
の符号からなる行列を返します.
A
が複素数の場合,
sign(A) = A./abs(A)
関数となります.
例
sign(rand(2,3)) sign(1+%i)
Report an issue | ||
<< | | Elementary Functions | size >> |