Skip to main content

calculas python library

Project description

pyculas

Installation Instructions

use pip or pip3 to install the library.

pip install pyculas

Note:

Currently this library support only algebraic expressions. Soon we will update for trigonometric, logarithmic expressions , etc.

Usage

This class takes a list of terms in a polynomial expression

Importing

from pyculas import Expression

Examples of usage:

If you have 4x^3 - 2x + 6, then create the object as follows -

A = Expression.algebraic("4x^3 - 2x + 6")

Differentiation

1.If only final expression required

Q. 2x^2+2

A = Expression.algebraic("2x^2 + 2")
print(A.differentiate())

Output:

('4.000x', None)

2.To get value at a point

Q. Find the differentiation of 2x^2+2 at x=3.

A = Expression.algebraic("2x^2 + 2")
print(A.differentiate(value=3,level=1))

Output:

('4.000x', 8.0)

Here value means at which point you want to differentiate and level means the nth derivative.

Integration

1.If only final expression required

Q. 2x^2+2

A = Expression.algebraic("2x^2 + 2")
print(A.integrate())

Output:

('0.667x^3.000 + 2.0x + c', None)

2.To evaluate when limits are given

Q. 2x^2+2

A = Expression.algebraic("2x^2 + 2")
print(A.integrate(upper_limit=4 , lower_limit=2))

Output:

('0.667x^3.000 + 2.0x + c', 41.352)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyculas-2.0.tar.gz (3.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyculas-2.0-py3-none-any.whl (5.4 kB view details)

Uploaded Python 3

File details

Details for the file pyculas-2.0.tar.gz.

File metadata

  • Download URL: pyculas-2.0.tar.gz
  • Upload date:
  • Size: 3.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.0 pkginfo/1.7.0 requests/2.20.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.6.8

File hashes

Hashes for pyculas-2.0.tar.gz
Algorithm Hash digest
SHA256 754484e5fbf28299e3be2fc6a01adfe014280e00b607ac3db821f17c31ec8fa4
MD5 68733e92c6418c68bb5ad182408ca7b3
BLAKE2b-256 0e8797ccfdfaf5e6a1f81733670686d8aeb5ed474df7eb3789d5d5ec6da3ead9

See more details on using hashes here.

File details

Details for the file pyculas-2.0-py3-none-any.whl.

File metadata

  • Download URL: pyculas-2.0-py3-none-any.whl
  • Upload date:
  • Size: 5.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.0 pkginfo/1.7.0 requests/2.20.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.6.8

File hashes

Hashes for pyculas-2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 951ec3f24a8dfe52117fda7a25c2f3b72fac6f428273116acef6e69bf160e4a8
MD5 7fb0e4fbd09a1c1b1e57110707f02ad7
BLAKE2b-256 45b8155c283ef96249ba5384388270c546e2ba9e31695c83074dc3cc48c153dc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page