reshape

As SincMatrix is row-major, reshape picks data from rows first and also fills rows first. Thus, a reshape such as reshape(A, 4, 3) on SincMatrix is equal to reshape(A', 3, 4)' on MATLAB/Octave.