Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eskaliert680/adhoccas

A basic library for Calculus with derivatives, Riemann sums, partial derivatives, line integrals, and more.
https://github.com/eskaliert680/adhoccas

analysis calculus integration math numerical

Last synced: 14 days ago
JSON representation

A basic library for Calculus with derivatives, Riemann sums, partial derivatives, line integrals, and more.

Awesome Lists containing this project

README

        

# adhocCAS

A basic library for Calculus with derivatives, Riemann sums, partial derivatives, line integrals, and more.

## Demo

```python
# Suppose we wanted to find the partial derivative of z = x^2 + y^2 at (2,2), with respect to y.

partialDerivative(lambda x: x[0]**2 + x[1]**2,[2,2],2)

```