Skip to content

Instantly share code, notes, and snippets.

[[January 1st, 2019]]
[[January 2nd, 2019]]
[[January 3rd, 2019]]
[[January 4th, 2019]]
[[January 5th, 2019]]
[[January 6th, 2019]]
[[January 7th, 2019]]
[[January 8th, 2019]]
[[January 9th, 2019]]
[[January 10th, 2019]]
@dela3499
dela3499 / eigenvalue_cloud.py
Created September 29, 2023 02:02
Beautiful Eigenvalue Cloud
import numpy as np
import matplotlib.pyplot as plt
import itertools
%matplotlib inline
lim = 20
n_points = 100000
t1 = np.linspace(-lim, lim, int(np.sqrt(n_points)))
t2 = np.linspace(-lim, lim, int(np.sqrt(n_points)))