4f1e7f2f936bf5f3e6d1da8d8be843dc3273fe67,examples/1d/plot_filters.py,,,#,17
Before Change
fig, axs = plt.subplots(2, 1)
psis_f = (psi1_f, psi2_f)
Qs = (Q, 1)
for k in range(2):
axs[k].plot(np.arange(T)/T, phi_f[0], "b")
After Change
for psi_f in psi2_f:
plt.plot(np.arange(T)/T, psi_f[0], "b")
plt.xlim(0, 0.5)
plt.ylim(0, 1.2)
plt.xlabel(r"$\omega$", fontsize=18)
plt.ylabel(r"$\hat\psi_j(\omega)$", fontsize=18)
plt.title("Second-order filters (Q = 1)", fontsize=18)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 2
Instances
Project Name: kymatio/kymatio
Commit Name: 4f1e7f2f936bf5f3e6d1da8d8be843dc3273fe67
Time: 2018-11-21
Author: janden@flatironinstitute.org
File Name: examples/1d/plot_filters.py
Class Name:
Method Name:
Project Name: scipy/scipy
Commit Name: 6933f80091d1a2f7ef2310a6b29988bf10443658
Time: 2007-06-10
Author: jtravs@localhost
File Name: Lib/sandbox/rbf/tests/example1.py
Class Name:
Method Name:
Project Name: slinderman/pyhawkes
Commit Name: 279fbb4f034356c651614a8f67d94c9489e7758a
Time: 2017-04-27
Author: scott.linderman@gmail.com
File Name: examples/inference/standard_bfgs_demo.py
Class Name:
Method Name: demo