#include #include #include void initMatrix(size_t m, size_t n, double *A, ptrdiff_t incRow, ptrdiff_t incCol) { for (size_t i=0; i A\n"); // ***Your code here*** printMatrix(m, n, A, incRow, incCol); // 2) dger printf("1.5*x * y^T + A^T -> A^T\n"); // ***Your code here*** printMatrix(m, n, A, incRow, incCol); // Deallocate matrix A_ free(A_); }