Matrix Transpose
This block transposes an MxN matrix to a NxM matrix. The result depends on rule parameter. When this parameter is equal to :
The equivalent operators of this block in Scilab are y=u.’ and y=u’. See `quote (‘)`_.
. Complex
-- -- -- --
| 1+i 2+3i 3+2i | Tranpose (.') | 1+ i 4+ i |
| 4+i 5-8i 6-2i | -----------> | 2+3i 5-8i |
-- -- | 3+2i 6-2i |
. -- --
. Complex
-- -- -- --
| 1+i 2+3i 3+2i | Tranpose (') | 1- i 4- i |
| 4+i 5-8i 6-2i | -----------> | 2-3i 5+8i |
-- -- | 3-2i 6+2i |
. -- --
. Real
-- -- -- --
| 1 -2 3 | Tranpose | 1 4 |
| 4 5 6 | -----------> |- 2 5 |
-- -- | 3 6 |
. -- --