Scilab-Branch-5.3-GIT
- Aide Scilab
- Fonctions Elémentaires
- Complex
- Mathématiques discrètes
- Matrices élémentaires
- Virgule flottante
- Représentation d'entier
- Manipulation de matrices
- Opérations matricielles
- Chercher et trier
- Opérations sur les ensembles
- Traitement du signal
- Calcul symbolique
- Trigonométrie
- Bitwise operations
- abs
- amell
- and
- &
- delip
- exp
- inttrap
- isdef
- log
- log10
- log2
- logm
- lstsize
- max
- min
- modulo
- norm
- or
- |
- sign
- signm
- size
- sqrt
- sqrtm
- squarewave
- toeplitz
- cat
- cell2mat
- cellstr
- char
- diff
- isempty
- isequal
- isequalbitwise
- isvector
- log1p
- ndims
- pertrans
- typeof
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
pertrans
pertranspose
Calling Sequence
[Y]=pertrans(X)
Arguments
- X
real or complex matrix
- Y
real or complex matrix
Description
Y=pertrans(X)
returns the pertranspose of
X
, i.e. the symmetric of X
w.r.t the
second diagonal (utility function).
Examples
A=[1,2;3,4] pertrans(A)
<< ndims | Fonctions Elémentaires | typeof >> |