#include "SparseMat.h" struct mat_sp TransposeSparseMat(struct mat_sp A) { struct mat_sp At; struct row_sp * row; int i, j, n; float z; /* Initializing Spare Matrix */ /* Set Dimensions */ At = InitializeSparseMat(A.n, A.m); /* Move Entries */ for(i=0; i