This file contains 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.animation as animation | |
from matplotlib import pyplot | |
hr = 1000 | |
vr = 1000 | |
fig, g = pyplot.subplots(figsize=(hr/100,vr/100)) | |
pyplot.subplots_adjust(top = 0.979, left = 0.024, right = 0.972, bottom = 0.039) |
This file contains 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 matplotlib | |
import numpy as np | |
import matplotlib.animation as animation | |
from matplotlib import pyplot | |
fig, g = pyplot.subplots(figsize=(11,11)) |
This file contains 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.animation as animation | |
from matplotlib import pyplot | |
# Plot size | |
hr = 1200 | |
vr = 1200 |
This file contains 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.animation as animation | |
from matplotlib import pyplot | |
from random import randint | |
fig, g = pyplot.subplots(figsize=(6,6)) | |
pyplot.subplots_adjust(left = 0.0, right = 1.0, top = 1.0, bottom = 0.0) | |
This file contains 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 pyplot | |
import matplotlib.animation as animation | |
pyplot.style.use("dark_background") | |
fig, g = pyplot.subplots(figsize=(6,6)) | |
pyplot.subplots_adjust(top = 1.0, left = 0.00, right = 1.0, bottom = 0.00) | |