nkoskelo
nkoskelo
``` knl = lp.make_kernel( " { [i] : 0
Fixes #870.
This is a start towards fixing #870.
``` import pygsti from pygsti.modelpacks import smq1Q_XY from pygsti.circuits import Circuit from pygsti.baseobjs import Label test_model = smq1Q_XY.target_model('static') test_circuit = Circuit([Label('Gxpi2',0)], line_labels=(0,)) test_model.sim.bulk_dprobs([test_circuit]) ``` The above yields an Array access...
We currently solve, ```J^TJ = -J^T f``` in parallel with partial pivoting of Gaussian elimination. Since we know that the left hand side is positive semi definite, one does not...
TODO: Add description.
```python var = 2 if var: print(True) ``` will print True but ```python var = 2 if var == True: print(True) ``` will not print True in python 3.11. We...
We use finite difference with a hard-coded step size of $10^{-7}$ for approximating the value of $f(x)$. This requires $N_p + 1$ calls to $f$ where $N_p$ is the number...