Difference between revisions of "Function:MatMulTrans"
From CUVI Wiki
| Line 64: | Line 64: | ||
//Perform matrix multiplication (A * A') | //Perform matrix multiplication (A * A') | ||
cuvi::arithmeticLogical:: | cuvi::arithmeticLogical::matMulTrans(A,B); | ||
//The order of multiplication can be reversed to (A' * A) | //The order of multiplication can be reversed to (A' * A) | ||
cuvi::arithmeticLogical:: | cuvi::arithmeticLogical::matMulTrans(A,B,true); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Revision as of 05:45, 16 June 2014
Performs matrix multiplication with its transpose.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| A | CuviImage& | Input Image |
| B | CuviImage& | Resultant Image |
| stream | CuviStream& | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 32f single channel | 32f single channel |
Example
|