@@ -2615,15 +2615,15 @@ def specgram(x, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none, window=mlab.win
26152615# This function was autogenerated by boilerplate.py. Do not edit as
26162616# changes will be lost
26172617@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 ):
26192619 ax = gca ()
26202620 # allow callers to override the hold state by passing hold=True|False
26212621 washold = ax .ishold ()
26222622
26232623 if hold is not None :
26242624 ax .hold (hold )
26252625 try :
2626- ret = ax .stem (x , y , linefmt , markerfmt , basefmt )
2626+ ret = ax .stem (x , y , linefmt , markerfmt , basefmt , bottom , label )
26272627 draw_if_interactive ()
26282628 finally :
26292629 ax .hold (washold )
@@ -2648,6 +2648,24 @@ def step(x, y, *args, **kwargs):
26482648
26492649 return ret
26502650
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+
26512669# This function was autogenerated by boilerplate.py. Do not edit as
26522670# changes will be lost
26532671@autogen_docstring (Axes .tricontour )
0 commit comments