#include #include "toeplitz.h" /*Function to build a Toeplitz Matrix for inputs of Character datatype*/ void gtoeplitza(char* inp1,int size1,char* inp2,int size2,char* 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