MCPcopy Create free account
hub / github.com/numpy/numpy / _convertarray

Function _convertarray

numpy/linalg/linalg.py:1184–1187  ·  view source on GitHub ↗
(a)

Source from the content-addressed store, hash-verified

1182 return w.astype(_realType(result_t), copy=False)
1183
1184def _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

Callers

nothing calls this directly

Calls 3

_commonTypeFunction · 0.85
astypeMethod · 0.80
copyMethod · 0.45

Tested by

no test coverage detected