Metadata-Version: 1.1
Name: linearizator
Version: 0.1.01
Summary: Small library to solve linearization problems
Home-page: https://github.com/RDCH106/linearizator
Author: Rubén de Celis Hernández
Author-email: contact@rdch106.hol.es
License: LGPL v3
Download-URL: https://github.com/RDCH106/linearizator/archive/v0.1.01.tar.gz
Description: 
        Linearizator is compatible with **Python 2** and **Python 3**.
        
        ************************************
        What can I do with Linearizator?
        ************************************
        
        - Solve equation of line using 2 points
        - Use solved equation to linearize values
        
        
        Installation
        ============
        
        You can install or upgrade linearizator with:
        
        - ``$ pip install linearizator --upgrade``
        
        Or you can install from source with:
        
        - ``$ git clone https://github.com/RDCH106/linearizator.git --recursive``
        
        - ``$ cd linearizator``
        
        - ``$ python setup.py install``
        
        
        Quick example
        =============
        
        ``---------------------------------``
        
        .. code-block:: python
        
           from linearizator import linearizator
        
           # Initialize linearizator object
           lin = linearizator.linearizator(x1=6.4, y1=20, x2=16.8, y2=85, unknown="y")
        
           # Linearize
           lin.linearize()
        
           # Show equation of line
           print(lin.pretty_equation())
        
           # Calculate the value of a point
           print(lin.calculate(6.4))
        
           # Generate inverse linearization
           lin.inverse()
        
           # Show equation of line
           print(lin.pretty_equation())
        
           # Calculate the value of a point
           print(lin.calculate(20))
           
Keywords: math,linearization
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
