void sxMatrixTranspose(const SXMatrix & mIn, SXMatrix & mOut) {
    mOut = SXMatrix(mIn.trans());
}