1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
#!/usr/bin/env python
"""Matplotlib 2D plotting example
Demonstrates plotting with matplotlib.
"""
import sys
from sample import sample
from sympy import sqrt, Symbol
from sympy.utilities.iterables import is_sequence
from sympy.external import import_module
def mplot2d(f, var, *, show=True):
"""
Plot a 2d function using matplotlib/Tk.
"""
import warnings
warnings.filterwarnings("ignore", r"Could not match \S")
p = import_module('pylab')
if not p:
sys.exit("Matplotlib is required to use mplot2d.")
if not is_sequence(f):
f = [f, ]
for f_i in f:
x, y = sample(f_i, var)
p.plot(x, y)
p.draw()
if show:
p.show()
def main():
x = Symbol('x')
# mplot2d(log(x), (x, 0, 2, 100))
# mplot2d([sin(x), -sin(x)], (x, float(-2*pi), float(2*pi), 50))
mplot2d([sqrt(x), -sqrt(x), sqrt(-x), -sqrt(-x)], (x, -40.0, 40.0, 80))
if __name__ == "__main__":
main()
|