|
SOLUTIONS
|
CUDALINK SYMBOL
CUDATranspose
CUDATranspose[mat]
transposes input matrix mat.
CUDATranspose[mem]
transposes input CUDAMemory mem.
DetailsDetails
- The CUDALink application must be loaded using Needs["CUDALink`"].
works on matrices.
works with binary or grayscale images.
works with CUDAMemory, but cannot work on fixed vector struct types like
,
, ....
does not work on symbolic input.
is equivalent to Transpose.
ExamplesExamplesopen allclose all
Basic Examples (2)Basic Examples (2)
First, load the CUDALink application:
| In[1]:= |
This transposes an input matrix:
| In[2]:= |
Out[2]//MatrixForm= | |
![]() | |
If input is CUDAMemory, then memory is returned as output:
| In[1]:= |
| Out[1]= |
The transposes the input CUDAMemory:
| In[2]:= |
| Out[2]= |
Memory is retrieved using CUDAMemoryGet:
| In[3]:= |
| Out[3]= |
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »


