1#!/usr/bin/env python
2
3# Append to effective python path so that can find plplot modules.
4from plplot_python_start import *
5
6import sys
7import plplot as w
8from numpy import *
9
10# Parse and process command line arguments
11w.plparseopts(sys.argv, w.PL_PARSE_FULL)
12
13# Initialize plplot
14w.plinit()
15# Choose 5 here so there is room for non-exponential notation for an axis
16# label of +0.08.
17w.plsyax(5, 0)
18w.pladv(0)
19w.plvpor(0.1, 0.9, 0.1, 0.9)
20w.plwind(0.00, 1.00, 0.00, 0.08)
21w.plbox("bcnst", 0.0, 0, "bcnstv", 0.0, 0);
22w.plend()
23