معرفی شرکت ها


Equation-1.2.01


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

General Equation Parser and Evaluator
ویژگی مقدار
سیستم عامل -
نام فایل Equation-1.2.01
نام Equation
نسخه کتابخانه 1.2.01
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Glen Fletcher
ایمیل نویسنده glen.fletcher@alphaomega-technology.com.au
آدرس صفحه اصلی https://github.com/alphaomega-technology/Equation
آدرس اینترنتی https://pypi.org/project/Equation/
مجوز AlphaOmega Technology Open License Version 1.0 (http://www.alphaomega-technology.com.au/license/AOT-OL/1.0)
.. image:: https://travis-ci.org/alphaomega-technology/Equation.svg?branch=v1.2.01 :target: https://travis-ci.org/alphaomega-technology/Equation Equation Interpeter =================== The Equation Package provide an extentable Equation Parser and Evaluation System. It will take a string such as `"sin(x+y^2)"` and convert it to a python object that can be called this allow the safe evaluation of equations stored in configuration files or enterned from the keyboard. This Package never calls a python evaluation command hence their is no risk of executing any unexpected python code. The Generated Expression Object is desgined to behave like a python function, and can be used any where a python funcion is expected, it may be called with either positional or keyword arguments to set the Equations Variables, by default the order of the variables is as they appear in the equation, however an explicit order may be set when the Expression object is created. Example ------- >>> from Equation import Expression >>> fn = Expression("sin(x+y^2)",["y","x"]) >>> fn sin((x + (y ^ (2+0j)))) >>> print fn \sin\left(\left(x + y^{(2+0j)}\right)\right) >>> fn(3,4) (0.42016703682664092+0j) Numpy Arrays Supported ---------------------- The default function maping used by this package map the operators and functions to Numpy Functions, hence the generated object may be called with numpy arrays. Latex Support ------------- The display string format i.e. str() is set to use Latex syntax allowing high quality equations to be rendered in output this syntax is supported by the grqaphing package matplotlib .. Note:: repr() method will return a string suitable for passing to Expression, however it is recalucated from the tokenized expression, and has all brackets. Future Versions --------------- Goals for future versions are: - Reduce repr() type respresentation to use only required brackets - Allow the use of function variable, rather than just predefined functions


نحوه نصب


نصب پکیج whl Equation-1.2.01:

    pip install Equation-1.2.01.whl


نصب پکیج tar.gz Equation-1.2.01:

    pip install Equation-1.2.01.tar.gz