(a)
| 1182 | return w.astype(_realType(result_t), copy=False) |
| 1183 | |
| 1184 | def _convertarray(a): |
| 1185 | t, result_t = _commonType(a) |
| 1186 | a = a.astype(t).T.copy() |
| 1187 | return a, t, result_t |
| 1188 | |
| 1189 | |
| 1190 | # Eigenvectors |
nothing calls this directly
no test coverage detected