Automatically generates textbook graphs for mathematical functions.
Project description
plotmath
plotmath 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=12,
xstep=1,
ystep=2,
)
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.3.6.tar.gz
(8.3 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.3.6.tar.gz.
File metadata
- Download URL: plotmath-0.3.6.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1edfbdeef3120512a7f3c1f8e365d5f73577d8659edda819065dac8b495e6e68
|
|
| MD5 |
bde43eba9bf82d0d7ce8876c9e13e727
|
|
| BLAKE2b-256 |
637b01eda98f90cce2480a6581ab84ee8bcd196067358c3e83a09b7f8f54bc40
|
File details
Details for the file plotmath-0.3.6-py3-none-any.whl.
File metadata
- Download URL: plotmath-0.3.6-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e13a5e3100af5238ee746127f7d35ab1a0e481753e831f5a61439435703abf57
|
|
| MD5 |
e95924e54723b1b9ff755e74fa732b46
|
|
| BLAKE2b-256 |
3103ec3471de77722be58d2e2625950dc4b512910be12392439a6ee1306a4a44
|