KiwiCalc
Abstract
The project is intended to help integrating mathematical
expressions in python with greater ease and provide powerful
tools along them.
Python's syntax can be cumbersome when it comes to
more sophisticated mathematical notations, so wouldn't it be easier to
use them in a more intuitive "math-like" syntax?
Sources
Installation
You can install the library with pip
, by executing the command pip install kiwicalc
in your command prompt.
Basic Examples
First, import kiwicalc:
from kiwicalc import *
Plotting and scattering functions
my_function = Function("f(x) = x^2")
my_function.plot()
my_function = Function("f(x) = sin(x) * cos(y)")
my_function.plot()
my_function = Function("f(x,y) = sin(x) * cos(y)")
my_function.scatter3d()