Skip to content

fwidmaier/tenebris

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tenebris

In the examples directory, you can find some use cases and demonstrations of the mathematical capabilities of this small library. A small first-glance application is the implicit definition of functions (the square root for example):

from tenebris.solver import solve

sqrt = lambda t: solve(lambda x: x * x, t, 1)

print(sqrt(2))  # 1.414213562373095

Installation

Install the library by installing the wheel file from dist

pip install tenebris-1.0-py2.py3-none-any.whl

(Re-)Building the library

Use the following bash command to build the wheel file

python setup.py bdist_wheel --universal

About

A small python library that supports differentiation and solving (simple) equations

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages