MatrixMultiply
Module that calculates the matrix product of its two inputs. The matrix product is a matrix of size row1 x col2, where row1 x col1 is the size of the first input and row2 x col2 is the size of the second input. The usual rules for matrix multiplications applies, i. e., col1 = row2 (Note that column = x and row = y).
Example XML definition
A simple example
<module
class = "MatrixMultiply"
name = "MatrixMultiply"
/>
Module Connections
Inputs
| Name | Description |
|---|---|
| INPUT1 | The first input |
| INPUT2 | The second input |
Outputs
| Name | Description |
|---|---|
| OUTPUT | The output |
Author
Christian Balkenius
christian.balkenius@lucs.lu.se
Lund University Cognitive Science
Files
MatrixMultiply.h
MatrixMultiply.cc
MatrixMultiply.ikc