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
## credit to snake_charmer on StackOverflow for animation help https://stackoverflow.com/a/28015795 | |
import numpy as np | |
import math | |
import matplotlib.pyplot as plt | |
import matplotlib.image as mgimg | |
from matplotlib import animation | |
def rando(nemo): | |
couples = math.floor(nemo/2) # get number of couples, round down |