ProtoFlux:Transpose: Difference between revisions

From Resonite Wiki
Fixed node visual.
Fixed category tag placement (internal to the page).
 
Line 25: Line 25:


Returns the transposed (different ordering) matrix.
Returns the transposed (different ordering) matrix.
[[Category:ProtoFlux:Operators:Matrix]]


== See Also ==
== See Also ==
* Wikipedia's definition of [https://en.wikipedia.org/wiki/Matrix_(mathematics) matrix] & [https://en.wikipedia.org/wiki/Transpose transpose].
* Wikipedia's definition of [https://en.wikipedia.org/wiki/Matrix_(mathematics) matrix] & [https://en.wikipedia.org/wiki/Transpose transpose].
[[Category:ProtoFlux:Operators:Matrix]]

Latest revision as of 23:20, 28 June 2024

MT (Transpose)
A
*
Matrix

The Transpose node takes in a matrix value and returns the transposed result. Transposing a matrix changes the way on how the matrix is read, either Row-major or Column-major ordering, swapping or flipping diagonally from one to the other.

Inputs

A (Pseudo-Generic)

The matrix value we want to change.

Outputs

* (Pseudo-Generic)

Returns the transposed (different ordering) matrix.

See Also