Skip to main content

Bringing the math tools of Python to the command-line

Project description

Bringing the math tools of Python to the command-line

Doing math on the command-line is hard. Integer math can be done with BASH, but the only utility around for floating-point math is bc, and that can be confusing with its scale and precision. What if you want the power of Python’s math, perhaps programmatically? Enter: pmath.

Examples

Basic input:

$ pmath '3 + 4'
7
$ echo '3+4' | pmath
7
$ pmath <<< 3+4
7
$ pmath 'x=3;x+2'
5

You can set the output format with a -f switch:

$ pmath -f .4f <<< pow(2000, 1/3)
12.5992
$ pmath -f .4f <<< sin(pi/2)
1.0000

Enabling complex math operations is straightforward with -c:

$ pmath -c <<< exp(1j*pi).real
-1.0
$ pmath -f.2f -c 'ang=3*pi/4; exp(1j*ang)'
-0.71+0.71j

Installation

Running pip install pmath will install the command-line utility.

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

pmath-0.3.tar.gz (3.3 kB view details)

Uploaded Source

Built Distribution

pmath-0.3.linux-x86_64.tar.gz (3.6 kB view details)

Uploaded Source

File details

Details for the file pmath-0.3.tar.gz.

File metadata

  • Download URL: pmath-0.3.tar.gz
  • Upload date:
  • Size: 3.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pmath-0.3.tar.gz
Algorithm Hash digest
SHA256 91ded83466c854a139d9afc322cb1a65d17bba3bb88101e87c5eeb4a9314ee96
MD5 cf82b39008714b7436f978b1767b6570
BLAKE2b-256 3aebfbdf409d71b59f8aba3760142bb7f229492f1bff795df86c419525e00d90

See more details on using hashes here.

File details

Details for the file pmath-0.3.linux-x86_64.tar.gz.

File metadata

File hashes

Hashes for pmath-0.3.linux-x86_64.tar.gz
Algorithm Hash digest
SHA256 e41ed56229f04a681f6e4b5b4979d676902af56c6eae6d0405686fd7488662ec
MD5 50b79b978cbc7364343bc4cc44ee34e1
BLAKE2b-256 a74c9624f08dd21d7b3482183b62cf4cf75d6142ad1cc7b17ddaa1b0959ef0d6

See more details on using hashes here.

Supported by

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