Matías Senger
Matías Senger
Facing the same issue here. This also happens with the "official Arduino IDE" when opening the serial monitor. I always thought this was made in purpose. I don't want this...
For Pint quantities without uncertainties it can be done using Numpy: import pint import numpy ureg = pint.UnitRegistry() a = 10*ureg.meter b = 20*ureg.meter print(numpy.sqrt(a/b))
This import pint import numpy import uncertainties as un import uncertainties.unumpy as unp ureg = pint.UnitRegistry() a = un.ufloat(10,1)*ureg.meter b = un.ufloat(20,1)*ureg.meter print(a) print(numpy.sqrt(a/b)) gives 10.0+/-1.0 meter Traceback (most recent...
Hello @ikrommyd , I don't have any specific recommendation as I don't have experience with Tensorflow. I can mention that `landaupy` and my `scipy` PR are different implementations: - [The...
I found that this functionality was disabled due to [commented lines in `PybindProducer.cc`](https://github.com/eudaq/eudaq/blob/ce6a9499e00789280e5558885131e81d4c5c91ca/main/lib/python/src/PybindProducer.cc#L87). I simply uncommented the lines and now it works. I would appreciate if you can let me...
@dschmitz89 : > * please merge the main branch into your branch and check that all tests pass locally. Especially the linting job found a lot of issues which are...
Experiencing something similar in Trezor Suite desktop running in Fedora 40. Even though the message has only ASCII characters, I get that error from the screenshots. If I click "Sign"...
Hi @CasperSchippers , there are 2 reasons that come to my mind to run the procedures on the main thread: 1. Debug. When the procedure runs in a separate thread,...
@CasperSchippers indeed, for the case number 2, it is an overkill to measure a single point in that way, also super inefficient. However, `MeasurePoint` could actually be a quite complex...
Hi. Try `pip install setuptools` and run it again. You may try [this PR](https://github.com/thliebig/openEMS-Project/pull/239) as well.