CUDATranspose[cumat]
transposes input CUDA matrix cumat.
CUDATranspose[mat]
transposes input matrix mat.
CUDATranspose[mem]
transposes input CUDAMemory mem.
CUDATranspose
CUDATranspose[cumat]
transposes input CUDA matrix cumat.
CUDATranspose[mat]
transposes input matrix mat.
CUDATranspose[mem]
transposes input CUDAMemory mem.
Details and Options
- The CUDALink application must be loaded using Needs["CUDALink`"].
- CUDATranspose works on CUDAMatrix.
- CUDATranspose works on matrices.
- CUDATranspose works with binary or grayscale images.
- CUDATranspose works with CUDAMemory, but cannot work on fixed vector struct types like "Float[2]", "Integer32[2]", ….
- CUDATranspose does not work on symbolic input.
- CUDATranspose is equivalent to Transpose.
Examples
open all close allBasic Examples (3)
First, load the CUDALink application:
Needs["CUDALink`"]res = CUDATranspose[CUDAMatrix[Table[i, {i, 10}, {j, 10}]]];MatrixForm[Normal@Normal@res]This transposes an input matrix:
CUDATranspose[Table[i, {i, 10}, {j, 10}]]//MatrixFormIf input is CUDAMemory, then memory is returned as output:
mem = CUDAMemoryLoad[RandomReal[1, {3, 3}]]The transposes the input CUDAMemory:
res = CUDATranspose[mem]Memory is retrieved using CUDAMemoryGet:
Row[{
MatrixForm[CUDAMemoryGet[mem]],
MatrixForm[CUDAMemoryGet[res]]
}]Scope (2)
Input can be an image, but must be single-channeled:
CUDATranspose[[image]]Image components can be split and transposed independently:
imgs = CUDATranspose /@ ColorSeparate[[image]]The resulting color-separated image can be combined:
ColorCombine[imgs]See Also
Related Guides
-
▪
- CUDALink
Text
Wolfram Research (2010), CUDATranspose, Wolfram Language function, https://reference.wolfram.com/language/CUDALink/ref/CUDATranspose.html.
CMS
Wolfram Language. 2010. "CUDATranspose." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/CUDALink/ref/CUDATranspose.html.
APA
Wolfram Language. (2010). CUDATranspose. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/CUDALink/ref/CUDATranspose.html
BibTeX
@misc{reference.wolfram_2026_cudatranspose, author="Wolfram Research", title="{CUDATranspose}", year="2010", howpublished="\url{https://reference.wolfram.com/language/CUDALink/ref/CUDATranspose.html}", note=[Accessed: 15-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_cudatranspose, organization={Wolfram Research}, title={CUDATranspose}, year={2010}, url={https://reference.wolfram.com/language/CUDALink/ref/CUDATranspose.html}, note=[Accessed: 15-June-2026]}