Automatically generates textbook graphs for mathematical functions.
Project description
mathplot
mathplot is a Python package to automatically create textbook graphs of mathematical functions.
Basic examples
Example 1
import plotmath
def f(x):
return x**2 - x - 2
fix, ax = plotmath.plot(
functions=[f],
)
plotmath.savefig(
dirname="../figures",
fname="example_1.svg",
)
plotmath.show()
This will generate the following figure:
Example 2
import plotmath
import numpy as np
def f(x):
return x**2 * np.cos(x)
fix, ax = plotmath.plot(
functions=[f],
xmin=-6,
xmax=6,
ymin=-12,
ymax=8,
)
plotmath.savefig(
dirname="../figures",
fname="example_2.svg",
)
plotmath.show()
This will generate the following figure:
Example 3
import plotmath
def f(x):
return x**2 - 4
def g(x):
return x + 2
fix, ax = plotmath.plot(
functions=[f, g],
xmin=-6,
xmax=6,
ymin=-6,
ymax=6,
)
plotmath.savefig(
dirname="../figures",
fname="example_3.svg",
)
plotmath.show()
This will generate the following figure:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
plotmath-0.2.2.tar.gz
(4.8 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file plotmath-0.2.2.tar.gz.
File metadata
- Download URL: plotmath-0.2.2.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a09d1caeb02ee22bbf800f30b880a767b2f6c1b6f8be6c3e4217ca2bd127eddd
|
|
| MD5 |
19f19dcc864412c7e31a43698a6d2d7d
|
|
| BLAKE2b-256 |
e6989f73b9297eaf40e21db8a53843d83cf27f2d80ca6991607b3e956824bb13
|
File details
Details for the file plotmath-0.2.2-py3-none-any.whl.
File metadata
- Download URL: plotmath-0.2.2-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae01c39fc7111c06306f4b6554a8f20f88df56b3b649a1a1d640ce177ceec933
|
|
| MD5 |
b3d55d9214ffe977f89c7415a362b24f
|
|
| BLAKE2b-256 |
ddf0282ff53e12e79776aca4c44f2cf6396f990ecb43ae0b152bf686b4a424b3
|