The returns of `eig` function are inconsistent with document when matrix.rows = 1. ``` A = mpmath.matrix(1) print(mpmath.eig(A, left=False, right=False)) ``` This code returns `([mpf('1.0')], matrix([['1.0']]))`
The returns of
eigfunction are inconsistent with document when matrix.rows = 1.This code returns
([mpf('1.0')], matrix([['1.0']]))