Man Scilab

pertrans
Scilab Function

pertrans - pertranspose

Calling Sequence

[Y]=pertrans(X)

Parameters

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)
 
  

Back