Difference between revisions of "Function:MatMulTrans"
From CUVI Wiki
(Created page with "__NOTOC__ Performs matrix multiplication with its transpose. ===Function=== {| |style="font-size:150%;"| <syntaxhighlight lang="cpp"> CuviStatus matMulTrans(const CuviImage& ...") |
|||
| Line 56: | Line 56: | ||
CuviSize aSize(3,3); | CuviSize aSize(3,3); | ||
//Initialize input image | //Initialize input image | ||
Revision as of 07:29, 13 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 1 | Input 2 | Output |
|---|---|---|
| 32f single channel | 32f single channel | 32f single channel |
Example
|