Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 406 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 406 Bytes

KroneckerProduct

Calculates Kronecker Product of given A and B matrix. Function template:

kronecker(float* AMatrix, float* BMatrix, float* DestMatrix, int* SizeMatrix);

where: AMatrix - pointer to first matrix BMatrix - pointer to second matrix DestMatrix - pointer to preallocated matrix where kronecker product will be stored SizeMatirx - pointer to matrix of sizes - [ARows, ACols, BRows, BCols]