This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[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]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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))) |
OlderNewer