Metadata-Version: 1.0
Name: SlopeFields
Version: 0.1.0
Summary: A Slope Field generator and grapher. 
Home-page: http://pypi.python.org/pypi/SlopeFields/
Author: David Dworken
Author-email: david@daviddworken.com
License: LICENSE.txt
Description: SlopeFields
        ===========
        
        A slope field generator and grapher written in Python
        
        .. figure:: https://cloud.githubusercontent.com/assets/5304541/12706974/7736c270-c85b-11e5-830b-7acaf35b4331.png
           :alt: figure\_5
        
        For more example images, see `examples.md <https://github.com/ddworken/SlopeFields/blob/master/examples.md>`_
        . 
        
        Usage
        =====
        
        ::
        
            usage: slopeFields.py [-h] [--xMin XMIN] [--xMax XMAX] [--yMin YMIN]
                                  [--yMax YMAX] [--initX INITX] [--initY INITY] [--dX DX]
                                  [--line] [--approximate APPROXIMATE]
                                  equation
        
            Generate a slope field for a given function.
        
            positional arguments:
              equation              The equation
        
            optional arguments:
              -h, --help            show this help message and exit
              --xMin XMIN           Minimum x value.
              --xMax XMAX           Maximum x value.
              --yMin YMIN           Minimum y value.
              --yMax YMAX           Maximum y value.
              --initX INITX         The initial x value.
              --initY INITY         The initial y value.
              --dX DX               The dX value used in euler's method.
              --line                If you want to draw a line connecting the dots. Note
                                    this may cause problems on functions with asymptotes.
              --approximate APPROXIMATE
                                    If you want to approximate f(a).
        
        Installation
        ============
        
        .. code:: bash
        
            pip install SlopeFields
        
Platform: UNKNOWN
