@@ -1013,6 +1013,9 @@ def phase_plot(odefun, X=None, Y=None, scale=1, X0=None, T=None,
10131013
10141014 """(legacy) Phase plot for 2D dynamical systems.
10151015
1016+ .. deprecated:: 0.10.1
1017+ This function is deprecated; use `phase_plane_plot` instead.
1018+
10161019 Produces a vector field or stream line plot for a planar system. This
10171020 function has been replaced by the :func:`~control.phase_plane_map` and
10181021 :func:`~control.phase_plane_plot` functions.
@@ -1072,7 +1075,7 @@ def phase_plot(odefun, X=None, Y=None, scale=1, X0=None, T=None,
10721075 """
10731076 # Generate a deprecation warning
10741077 warnings .warn (
1075- "phase_plot is deprecated; use phase_plot_plot instead" ,
1078+ "phase_plot() is deprecated; use phase_plane_plot() instead" ,
10761079 FutureWarning )
10771080
10781081 #
@@ -1272,7 +1275,7 @@ def box_grid(xlimp, ylimp):
12721275 """box_grid generate list of points on edge of box
12731276
12741277 .. deprecated:: 0.10.0
1275- Use `phaseplot.boxgrid` instead.
1278+ Use :func: `phaseplot.boxgrid` instead.
12761279
12771280 list = box_grid([xmin xmax xnum], [ymin ymax ynum]) generates a
12781281 list of points that correspond to a uniform grid at the end of the
@@ -1282,7 +1285,7 @@ def box_grid(xlimp, ylimp):
12821285
12831286 # Generate a deprecation warning
12841287 warnings .warn (
1285- "box_grid is deprecated; use phaseplot.boxgrid instead" ,
1288+ "box_grid() is deprecated; use phaseplot.boxgrid() instead" ,
12861289 FutureWarning )
12871290
12881291 return boxgrid (
0 commit comments