template<class T> matrix_sparse<T> matrix_sparse<T>::transpose_in_place() {
orientation = other_orientation(orientation);
std::swap(number_rows, number_columns);
return *this;
}
Why transpose in place just swap number rows and columns and change orientation?. I can't find where it has been transpose and thank for your reply in advance.
Why transpose in place just swap number rows and columns and change orientation?. I can't find where it has been transpose and thank for your reply in advance.