Sébastien Celles

Results 294 comments of Sébastien Celles

I understand perfectly that's an important task to achieve that and your team bandwidth is limited. Such a solution will make it possible to edit python files on a VPS...

My pleasure! If you want to try this kind of solution quickly with Pluto... here is a `docker-compose.yml` file for that purpose ``` version: '3.3' services: jupyter_scipy_notebook: image: quay.io/jupyter/scipy-notebook:2024-02-24 ports:...

That's a nice example but I don't see a while loop but a for loop and that's main problem... Try with your example to add a cell when simulation is...

I need a binary serialization/deserialization library to send data through XBee. I currently don't know which one to choose. See https://arduino.stackexchange.com/questions/30681/binary-message-formatter/44433#44433 ArduinoJSON (v6 beta) provides also MessagePack support. One important...

I see two kind of example. YAXArray as sink Download 3 symbols data from MarketData.jl (for example) and get a "cube". YAXArray as source Take the previously obtained cube, swap...

https://github.com/mapbox/node-mbtiles/blob/master/lib/schema.sql provides a SQLite schema (create statements) for such a database. You can find at: https://github.com/perrygeo/python-mbtiles/blob/master/mbtiles.py https://github.com/consbio/pymbtiles some Python implementation

Thanks @SamProell for this update. If you are interested in Julia you might like https://github.com/JuliaDSP/DSP.jl/issues/548

Maybe some classes for stateful version of digital filters should be implemented

I tried ```python class StateFulLiveLFilter(LiveFilter): def __init__(self, b, a): """Initialize live filter based on difference equation. Args: b (array-like): numerator coefficients obtained from scipy. a (array-like): denominator coefficients obtained from...

Same problem also occurs with ```python class StatefulLiveSosFilter(LiveFilter): """Live implementation of digital filter with second-order sections. """ def __init__(self, sos): """Initialize live second-order sections filter. Args: sos (array-like): second-order sections...