We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0eec0df commit f679fffCopy full SHA for f679fff
1 file changed
demo.py
@@ -321,6 +321,28 @@ def check_expected_error(what, f):
321
################################
322
323
# basics
324
+gp.plot( th, nps.cat( np.cos(th), np.sin(th)),
325
+ title = 'broadcasting sin, cos',
326
+ _xrange = [0,2.*np.pi],
327
+ _yrange = [-1,1],
328
+ wait = 1)
329
+
330
+gp.plot( (th, np.cos(th)),
331
+ (th, np.sin(th)),
332
+ title = 'separate plots for sin, cos',
333
334
335
336
337
+gp.plot( (th, np.cos(th), dict(title="cos",
338
339
+ _yrange = [-1,1],)),
340
+ (th, np.sin(th), dict(title="sin",
341
342
+ _yrange = [-1,1])),
343
+ multiplot='title "multiplot sin,cos" layout 2,1',
344
345
346
gp.plot( (x**2,),
347
(-x, x**3),
348
( rho,
0 commit comments