2023-06-06 at IAS
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
| """Variable-length curve averaging""" | |
| # Author: Mathieu Blondel <mathieu@mblondel.org> | |
| # License: BSD 3 clause | |
| import numpy as np | |
| from scipy.interpolate import interp1d | |
| def curves_mean_std(X, Y, kind="linear"): |
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
| #!/bin/bash | |
| # usage: nbgrep 'pattern' | |
| SEARCHPATH=~/work/ | |
| # 'jq' technique lifted with gratitude | |
| # from https://gist.github.com/mlgill/5c55253a3bc84a96addf | |
| # Break on newlines instead of any whitespace |
OlderNewer
