Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
#!/bin/sh | |
## Information | |
## http://carlo-hamalainen.net/blog/2007/12/11/installing-minion-pro-fonts/ | |
## http://www.ctan.org/tex-archive/fonts/mnsymbol/ | |
## 0: Install | |
## http://www.lcdf.org/type/ | |
## I used --without-kpathsea to configure (with MacTeX 2011): | |
## | |
## ./configure --without-kpathsea |
''' | |
Simultaneous Perturbation Stochastic Approximation | |
Author: Jon Eisen | |
License: MIT | |
This code defines runs SPSA using iterators. | |
A quick intro to iterators: | |
Iterators are like arrays except that we don't store the whole array, we just | |
store how to get to the next element. In this way, we can create infinite | |
iterators. In python, iterators can act very similar to arrays. |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/