Matrix Transpose
- Updated2023-02-17
- 3 minute(s) read
Matrix Transpose
Transposes a matrix.
Inputs/Outputs

x
The matrix to manipulate.

input valid
Boolean value that describes whether the next data element has arrived for processing. Wire the output valid output of an upstream node to this input to transfer data from the upstream node to this node.
| True | The next data element has arrived for processing. |
| False | The next data element has not arrived for processing. |

ready for output
Boolean value that defines whether downstream nodes are ready for this node to return a new value. Use a Feedback Node to wire the ready for input output of a downstream node to this input of the current node.
| True | Downstream nodes are ready for this node to return a new value. |
| False | Downstream nodes are not ready for this node to return a new value. |
Default value: True

y
The result of the operation

operation overflow
A Boolean that indicates whether the theoretical computed value exceeds the valid range of the output data type.
| TRUE | The theoretical computed value exceeds the valid range of the output data type. |
| FALSE | The theoretical computed value does not exceed the valid range of the output data type. |

output valid
Boolean value that indicates whether this node computes a result that downstream nodes can use.
Wire this output to the input valid input of a downstream node to transfer data from the node to the downstream node.
| True | Downstream nodes can use the result this node computes. |
| False | This node returns an undefined value that downstream nodes cannot use.
Note This node may return different undefined values when executed in simulation mode versus when executed on hardware.
|

ready for input
Boolean value that indicates whether this node is ready to accept new input data.
Use Feedback Node to wire this output to the ready for output output of an upstream node.
| True | The node is ready to accept new input data. |
| False | The node is not ready to accept new input data. |
Input Pattern
Specify whether the node receives data by row of the matrix or by column of the matrix.
M
Specify the number of rows in the input matrix.
N
Specify the number of columns in the input matrix.
Conjugation
Specify whether to conjugate the input of the matrix during operation.
Resource Option
Choose how to implement the node in memory. Look-Up Table implements the node using look-up tables. Block Memory uses embedded blocks of memory, which is useful for transposing a large matrix to avoid consuming excessive FPGA resources.