Tobias Hangleiter
Tobias Hangleiter
### Issue Report Checklist * [x] Searched the [issues page](https://github.com/spyder-ide/spyder/issues?q=is%3Aissue) for similar reports * [x] Read the relevant sections of the [Spyder Troubleshooting Guide](https://github.com/spyder-ide/spyder/wiki/Troubleshooting-Guide-and-FAQ) and followed its advice * [x]...
### Summary `TimedAnimation` resets the event timer at the end of its `_step()` method: https://github.com/matplotlib/matplotlib/blob/f7b3def52b39a070064e0e713042cd948c985643/lib/matplotlib/animation.py#L1446 As far as I can tell, this is by design. The original commit included this...
I frequently deal with fairly large datasets (some high-dimensional loops and a buffered get-parameter). Loading these datasets from the database into a usable format (i.e., `xarray`) takes an extremely long...
I use jupytext to share scripts/notebooks between Jupyter and Spyder. I store the files in percent format: Jupytext header ```python # --- # jupyter: # jupytext: # cell_metadata_json: true #...
First off, thanks to everyone who worked on this project. I think it's high time the TeX stack has been rethought and `tectonic` looks very promising, especially in its V2/`Tectonic.toml`...
I would like to implement a new [measurement class of the API](https://www.swabianinstruments.com/static/documentation/TimeTagger/api/Measurements.html#startstop) as a parameter for the [Swabian Instruments TimeTagger driver](https://qcodes.github.io/Qcodes_contrib_drivers/api/generated/qcodes_contrib_drivers.drivers.SwabianInstruments.html). The measurement generates a histogram of time differences between...
The Oxford Mercury iPS driver currently assumes a three-axis vector magnet: https://github.com/microsoft/Qcodes/blob/1280f4a1730a0f70659aec835ce3935a1894de05/src/qcodes/instrument_drivers/oxford/MercuryiPS_VISA.py#L330-L334 For systems with fewer axes than this, the instrument-level parameters like `z_ramp` do not work / run indefinitely...
This PR implements the `unpack_self()` method for `MultiParameter`, extending #7346. This makes the special treatment of this type of parameter in `DataSaver.add_result()` redundant and should allow users to make use...
The following setup is disallowed by qcodes: ```py from qcodes.validators import Arrays from qcodes.parameters import Parameter, ParameterWithSetpoints from qcodes.dataset import Measurement p=Parameter('p', vals=Arrays(shape=(10,)), get_cmd=lambda : np.arange(10)) ps1 = ParameterWithSetpoints('ps1', vals=p.vals,...