matrix_transpose/3¶
matrix_transpose(+ Matrix,- Transpose)*
Transpose matrix Matrix to Transpose. Equivalent to:
matrix_transpose(Matrix,Transpose) :-
matrix_shuffle(Matrix,[1,0],Transpose).
matrix_transpose(+ Matrix,- Transpose)*
Transpose matrix Matrix to Transpose. Equivalent to:
matrix_transpose(Matrix,Transpose) :-
matrix_shuffle(Matrix,[1,0],Transpose).