@@ -2615,15 +2615,15 @@ def specgram(x, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none, window=mlab.win
2615
2615
# This function was autogenerated by boilerplate.py. Do not edit as
2616
2616
# changes will be lost
2617
2617
@autogen_docstring (Axes .stem )
2618
- def stem (x , y , linefmt = 'b-' , markerfmt = 'bo' , basefmt = 'r-' , hold = None ):
2618
+ def stem (x , y , linefmt = 'b-' , markerfmt = 'bo' , basefmt = 'r-' , bottom = None , label = None , hold = None ):
2619
2619
ax = gca ()
2620
2620
# allow callers to override the hold state by passing hold=True|False
2621
2621
washold = ax .ishold ()
2622
2622
2623
2623
if hold is not None :
2624
2624
ax .hold (hold )
2625
2625
try :
2626
- ret = ax .stem (x , y , linefmt , markerfmt , basefmt )
2626
+ ret = ax .stem (x , y , linefmt , markerfmt , basefmt , bottom , label )
2627
2627
draw_if_interactive ()
2628
2628
finally :
2629
2629
ax .hold (washold )
@@ -2648,6 +2648,24 @@ def step(x, y, *args, **kwargs):
2648
2648
2649
2649
return ret
2650
2650
2651
+ # This function was autogenerated by boilerplate.py. Do not edit as
2652
+ # changes will be lost
2653
+ @autogen_docstring (Axes .streamplot )
2654
+ def streamplot (x , y , u , v , density = 1 , linewidth = None , color = None , cmap = None , arrowsize = 1 , arrowstyle = '-|>' , minlength = 0.10000000000000001 , hold = None ):
2655
+ ax = gca ()
2656
+ # allow callers to override the hold state by passing hold=True|False
2657
+ washold = ax .ishold ()
2658
+
2659
+ if hold is not None :
2660
+ ax .hold (hold )
2661
+ try :
2662
+ ret = ax .streamplot (x , y , u , v , density , linewidth , color , cmap , arrowsize , arrowstyle , minlength )
2663
+ draw_if_interactive ()
2664
+ finally :
2665
+ ax .hold (washold )
2666
+ sci (ret )
2667
+ return ret
2668
+
2651
2669
# This function was autogenerated by boilerplate.py. Do not edit as
2652
2670
# changes will be lost
2653
2671
@autogen_docstring (Axes .tricontour )
0 commit comments