Carlo Emilio Montanari
Carlo Emilio Montanari
Hello everyone. Overtype caused me terrible lags when writing using VScode remote on an SSH server. I was forced to uninstall the extension... too bad!
@empet I still get the same error! ```python --------------------------------------------------------------------------- ValueError Traceback (most recent call last) /tmp/ipykernel_129118/530834281.py in 1 z = np.random.uniform(0, 1, size=(10, 10)) 2 z[z < 0.5] = None...
Ok, I managed to solve the problem with the following workaround: ```python z = np.random.uniform(0, 1, size=(10, 10)) z[z < 0.5] = np.nan z = np.asarray(z,dtype=object) z[np.isnan(z.astype(np.float_))] = None fig...
Hello @nicolaskruchten , From my conda list I get, specifically: ``` # Name Version Build Channel python 3.8.12 h12debd9_0 numpy 1.21.2 py38h20f2e39_0 scipy 1.7.1 py38h292c36d_2 pandas 1.3.4 py38h8c16a72_0 plotly 5.3.1...
Thanks! Sorry for the delay, I composed a simple test to check the self-consistency of the noise patterns. Of course the previous elens tests are all still compatible with this...
Sorry for the delay... I tried to adapt the class from Xnlbd in order to make it more compliant to the Twiss notation in Xtrack. Let me know if any...