https://github.com/energytim/complex-function-grapher
This is a simple complex function grapher
https://github.com/energytim/complex-function-grapher
complex-numbers complexity-analysis graphing mathematics python
Last synced: 10 months ago
JSON representation
This is a simple complex function grapher
- Host: GitHub
- URL: https://github.com/energytim/complex-function-grapher
- Owner: EnergyTim
- License: mit
- Created: 2025-03-07T17:14:31.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-03-07T17:34:30.000Z (10 months ago)
- Last Synced: 2025-03-07T18:31:52.758Z (10 months ago)
- Topics: complex-numbers, complexity-analysis, graphing, mathematics, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Complex function grapher.
## This python script graphs complex argument functions using HSL.
## Instructions:
1. You can change the function by changing the fz variable (z is the complex argument).
2. You can change the graphing bounds by changing np.linspace() bounds in x and y.
3. n is the number of pixels per axis.
4. Now you can launch the script and see the function.

fz = 1/z

fz = z + 1/z

fz = np.log(z)

fz = (z**2 - 1)*(z - complex(2, 1))**2/(z**2 + complex(2, -2))

fz = np.e**(-np.e**(-z))

fz = z**5 - 1

fz = np.sin(z)