This file contains hidden or 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
| Ctrl + Alt + delete on local session | |
| Ctrl + Shift + Esc on remote session |
This file contains hidden or 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
| to create a new environment | |
| conda create -n mynewenviron package1 package2 etc | |
| conda create -n newenv --clone ~anaconda | |
| to remove an environment | |
| conda remove -n myenvirontoremove --all | |
| always start with |
This file contains hidden or 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 | |
| from math import pi, log | |
| import pylab | |
| from scipy import fft, ifft | |
| from scipy.optimize import curve_fit | |
| i = 10000 | |
| x = np.linspace(0, 3.5 * pi, i) | |
| y = (0.3*np.sin(x) + np.sin(1.3 * x) + 0.9 * np.sin(4.2 * x) + 0.06 * | |
| np.random.randn(i)) |
NewerOlder