#include #include "toeplitz.h" #include "uint16.h" /*Function to build a Toeplitz Matrix for inputs of Unsigned Int16 datatype*/ void u16toeplitza(uint16* inp1,int size1,uint16* inp2,int size2,uint16* oup) { if (inp1[0]!=inp2[0]) { printf("Error!The first elements of the Vectors are not equal."); // First element of both input vectors must be equal for Toeplitz. return; } int i, j; for(i=0;i