KroneckerProd
Advanced Analysis Library Only
AnalysisLibErrType KroneckerProd (void *inputMatrixX, void *inputMatrixY, ssize_t numberOfRowsInX, ssize_t numberOfColumnsInX, ssize_t numberOfRowsInY, ssize_t numberOfColumnsInY, void *kroneckerProduct);
Purpose
Computes the Kronecker product result matrix.Computes the Kronecker product result matrix z as follows:
Parameters
Input | ||
Name | Type | Description |
inputMatrixX | void * | The real input matrix x. |
inputMatrixY | void * | The real input matrix y. |
numberOfRowsInX | ssize_t | The number of the rows of inputMatrixX. |
numberOfColumnsInX | ssize_t | The number of the columns of inputMatrixX. |
numberOfRowsInY | ssize_t | The number of the rows of inputMatrixY. |
numberOfColumnsInY | ssize_t | The number of the columns of inputMatrixY. |
Output | ||
Name | Type | Description |
kroneckerProduct | void | The Kronecker product result of inputMatrixX and inputMatrixY. The the size of the result is nk-by-ml. |
Return Value
Name | Type | Description |
status | AnalysisLibErrType | A value that specifies the type of error that occurred. Refer to analysis.h for definitions of these constants. |
Additional Information
Library: Advanced Analysis Library
Include file: analysis.h
LabWindows/CVI compatibility: LabWindows/CVI 8.1 and later