Marcus P S
Marcus P S
Hinton diagrams are suddenly using diamonds instead of squares. ``` python In [24]: mpltools.special.hinton(numpy.random.randn(10,10)) ```  Using my own `mpltools` build from binstar, which can be found [here](https://binstar.org/marcusps/mpltools) (it just...
When the nearby matrix elements have large absolute value, the boxes in the Hinton diagrams appear to overlap due to the line thickness. For example ``` python import numpy as...
A simple fix to #37 Currently it only handles anti-lexicographical (the default) and lexicographical ordering (the new addition). The `order` keyword argument takes a boolean argument, not because I thought...
Although I suppose it is only a matter of convention, it strikes me as unnatural to have `product` return a sequence that is not in lexicographical order — or rather,...
I can't seem to get around on a strange dependency on a RC version of `ffi`. I have a gem for `ffi` installed, version 1.9.3, but even the `--minimal-deps --conservative`...
doi2bib already supports DOIs and PMCIDs, but arXiv prepreints are becoming more and more common in many fields. Support for arXiv paper identifiers such as [1503.04822](http://arxiv.org/abs/1503.04822) and [quant-ph/0611264](http://arxiv.org/abs/quant-ph/0611264) as well...
The code currently computes the 1 norm using `norm(A^m,1)` instead of estimating more efficiently. This ends up being the bottleneck in the calculation of not so sparse matrices. The MATLAB...
We should not assume readout to be perfect, and we should offer at least 2 possibilities: 1. use the readout error mitigation in PyQuil's operator estimation 2. estimate the POVMs...
Fix #242 by replacing call to `numpy.linalg.norm(x,1)` with `numpy.linalg.norm(x,'nuc')`
The trace distance is given by $T(\rho, \sigma) = (1/2)\|\rho-\sigma\|_1$ where $\|\cdot\|_1$ is the Schatten 1-norm (as correctly indicated in the docs). In the implementation, however, a call is made...