internal static Exception DimensionsDontMatch <TException>(Vector <T> left, Matrix <T> right,
                                                            string paramName = null)
     where TException : Exception
 {
     return(DimensionsDontMatch <TException>(left.ToColumnMatrix(), right, paramName));
 }