d2a91ecb0626942c55e2aab552f598302dec8d7d,tex/figures/ylms.py,animated,__init__,#animated#Any#Any#Any#Any#Any#Any#,12
Before Change
j += self.lmax - l
// Compute the spherical harmonic
s = starry(ylm(l, m))
self.flux = s.render(self.u, 0, res=self.res)
// Plot the spherical harmonic
img = self.ax[i, j].imshow(self.flux, cmap="plasma",
After Change
j += self.lmax - l
// Compute the spherical harmonic
self.s[:] = 0
self.s[l, m] = 1
self.flux = self.s.render(self.u, 0, res=self.res)
// Plot the spherical harmonic
img = self.ax[i, j].imshow(self.flux, cmap="plasma",
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 8
Instances
Project Name: rodluger/starry
Commit Name: d2a91ecb0626942c55e2aab552f598302dec8d7d
Time: 2018-02-12
Author: rodluger@gmail.com
File Name: tex/figures/ylms.py
Class Name: animated
Method Name: __init__
Project Name: rodluger/starry
Commit Name: d2a91ecb0626942c55e2aab552f598302dec8d7d
Time: 2018-02-12
Author: rodluger@gmail.com
File Name: tex/figures/ylms.py
Class Name:
Method Name: Static
Project Name: rodluger/starry
Commit Name: d2a91ecb0626942c55e2aab552f598302dec8d7d
Time: 2018-02-12
Author: rodluger@gmail.com
File Name: tex/figures/ylms.py
Class Name: animated
Method Name: animate