File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,20 +15,20 @@ no longer available in the `matplotlib.pylab` module:
15
15
- ``dist_point_to_segment ``
16
16
- ``distances_along_curve ``
17
17
- ``entropy `` (use `scipy.stats.entropy ` instead)
18
- - ``exp_safe ``
18
+ - ``exp_safe `` (use ` numpy.exp ` instead)
19
19
- ``fftsurr ``
20
20
- ``find `` (use ``np.nonzero(np.ravel(condition)) `` instead)
21
21
- ``frange `` (use `numpy.arange ` instead)
22
22
- ``get_sparse_matrix ``
23
23
- ``get_xyz_where ``
24
- - ``griddata ``
24
+ - ``griddata `` (use ` scipy.interpolate.griddata ` instead)
25
25
- ``identity `` (use `numpy.identity ` instead)
26
26
- ``inside_poly ``
27
27
- ``is_closed_polygon ``
28
28
- ``ispower2 ``
29
29
- ``isvector ``
30
- - ``l1norm ``
31
- - ``l2norm ``
30
+ - ``l1norm `` (use `` numpy.linalg.norm(a, ord=1) `` instead)
31
+ - ``l2norm `` (use `` numpy.linalg.norm(a, ord=2) `` instead)
32
32
- ``log2 `` (use `numpy.log2 ` instead)
33
33
- ``longest_contiguous_ones ``
34
34
- ``longest_ones ``
You can’t perform that action at this time.
0 commit comments