Search
Search Results
Search finished, found 3 page(s) matching the search query.
- NumPy 1.25.0 Release Notes
...float or a.item() b = np.array([[3.14]]) c = numpy.random.rand(10) c[0] = b # better: c[0] = b[0, 0] (gh-10615) np.find_common_type is deprecated. numpy.find_common_type is now deprecated and its use should be replaced with either nump...
- NumPy 2.0 migration guide
...r use typing.deprecated. disp Use your own printing function instead. fastCopyAndTranspose Use arr.T.copy() instead. find_common_type Use numpy.promote_types or numpy.result_type instead. To achieve semantics for the scalar_types argumen...
- NumPy 2.0.0 Release Notes