CUDA
C/C++    Fortran   

Matrix transpose. More...

List of all members.

Public Member Functions

type(arrayarray_transpose (A)
 Transpose an array.

Detailed Description

Matrix transpose.

Parameters:
[in]A-- type array of size M x N
Returns:
B of size N x M which is the matrix transpose of A
 type(array) A, B
 A = randu(20, 25) ! Random matrix
 B = transpose(A)  ! Matrix transpose

The documentation for this interface was generated from the following file: