A pull request to matplotlib replaces np.column_stack with np.vstack().T in specific safe cases for 24-36% performance improvement. The optimization works because vstack().T does contiguous memory copies and returns a view, while column_stack interleaves elements. Only transformations where both arrays are 1D with the same
Sort: