Aaron O'Leary
Aaron O'Leary
If we decide we want to have all of the Matlab wavelets available, here is the list available in Matlab r2015b: ``` >>> waveletfamilies('n') =================================== Haar haar =================================== Daubechies db...
We can write in markdown and convert to a notebook. We can convert a notebook to markdown (exported markdown). Notebooks can cache computed output (figures...). Exported markdown stores output figures...
(Following from [/r/ipython](http://www.reddit.com/r/IPython/comments/2do4z5/converting_sphinx_rst_to_an_ipython_notebook/)) It is common to use `>>>` at the start of a line in a code block to indicate a line entered into an interactive prompt. Lines without...
License?
This is a really cool project. The visualisation is excellent. Could you clarify the license on this code? I'm thinking with regard to using it on data from other countries.
`\autoref` is useful but magical. It makes the referencing system more complex. Use `\ref` style by default (i.e. `see figure #fig:a` -> `see figure 1`, rather than `see #fig:a` ->...
Use case: writing a thesis with multiple chapters. When creating a pdf, latex takes care of all internal referencing. Multiple source documents are concatenated into a single continuous markdown and...
Example code: ``` python from wavelets import WaveletAnalysis wa = WaveletAnalysis() # hard coded Morlet value print wa.C_d print wa.wavelet.C_d # override hard coding wa.wavelet.C_d = None # Now C_d...
### Math highlighting Math in multimarkdown is written in TeX and delimited using `\\( ..math.. \\)` and `\\[ ..math.. \\]` for inline and display math respectively. Previously, the highlighting in...