Matías Senger

Results 21 issues of Matías Senger

I have to control a [EA-PS 5040-20 A](https://elektroautomatik.com/shop/en/products/programmable-dc-laboratory-power-supplies/dc-laboratory-power-supplies/series-ps-5000-br-160-up-to-640-w/705/laboratory-power-supply-0..40v/0..20a/320w) programmable DC power supply. It uses the ModBus protocol but with some differences from the standard. I am not an expert in...

enhancement

I am trying to combine uncertainties and [pint](https://pint.readthedocs.io/en/latest/) to avoid tedious calculations. When operations consist only in +,-,* and / everything works perfectly. The problem arises when I try to...

NumPy+uncertainties

I found out that if I have `file.tex` with this content: ```Latex \begin{equation} \frac{\left(a+b\right)}{a} \end{equation} \begin{itemize} \item Lalala. \end{itemize} ``` and I run ```Python import TexSoup with open('file.tex', 'r') as...

The output of this ```Python import TexSoup latex = r'\def\lagrangian{\mathscr{L}}' soup = TexSoup.TexSoup(latex) print(soup.contents) ``` is ``` [\def{\}{lagrangian}, {\mathscr{L}}] ``` Is this the correct behavior? Sorry if not, I am...

I am writing a producer for a device, in Python, following the [example producer](https://github.com/eudaq/eudaq/blob/v2.5.2/user/example/python/ExamplePyProducer.py). A preliminary version of my producer can be found [here](https://github.com/SengerM/eudaq/blob/CAEN_digitizer/user/CAEN_DT5742/python/CAENDT5742Producer.py). Following [the commented line 14 in...

#### Reference issue No reference issue. #### What does this implement/fix? Add [Landau distribution](https://en.wikipedia.org/wiki/Landau_distribution), a special case of [`scipy.stats.levy_stable`](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.levy_stable.html) when `alpha=beta=1`. #### Additional information The specific implementation of `landau` I...

scipy.stats
enhancement
needs-work

Hello, I am trying to compile [the Stanford RRAM Model v1.0.0](https://nano.stanford.edu/downloads/stanford-rram-model) using OpenVAF and getting this: ``` $ openvaf rram_v_1_0_0.va OpenVAF encountered a problem and has crashed! A log file...

I am following [the tutorial](https://pymeasure.readthedocs.io/en/latest/tutorial/procedure.html) where it is explained how to create a simple procedure and run it using a `Worker`. Though this is really nice, in some cases it...

diagnosed
automation

I am following [the tutorial](https://pymeasure.readthedocs.io/en/latest/tutorial/procedure.html#modifying-our-script) and wondering what is the correct way of validating the user inputs for the different parameters. Suppose I set the following parameter `p = FloatParameter('p',...

GUI

I am new to pymeasure, but reading the documentation and source code I could not find a way to provide a description for each `Parameter` I add to my `Procedure`....