def showEachSetOfStatesIn3D():
''' Make a 3D plot in separate figure for each of the 3 states in a "set"
These three states just vary the speed of rotation and scale of noise,
from slow and large to fast and smaller.
'''
from matplotlib import pylab
from mpl_toolkits.mplot3d import Axes3D
L = len(degPerSteps)
for ii in xrange(L):
plotSequenceForRotatingState3D(-1 * degPerSteps[ii], sigma2s[ii], 2)
评论列表
文章目录