Won't any solution not using hdf5 or some other chunked on disk storage
method load the whole cube into memory?
___
NumPy-Discussion mailing list
NumPy-Discussion@python.org
https://mail.python.org/mailman/listinfo/numpy-discussion
Hi all!
I'm writing a Modbus TCP client using pymodbus3 library.
When asking for some parameters, the response is always a list of int16.
In order to make the values usable, I need to transfer them into 32bit bites,
than put them in the correct order (big\little endian wise), and then to cast
the
Hi,
I am trying to do a slding window on a cube (3D array) to get the average
over a block of vertical 1D arrays. I have achieved this using the
stride_tricks.asstrided but this will load the whole cube into memory at
once and is not suitable for large cubes. I have also achieved it using an
ndite