Skip to content

Instantly share code, notes, and snippets.

View hoechenberger's full-sized avatar
🕺

Richard Höchenberger hoechenberger

🕺
View GitHub Profile
@nvictus
nvictus / runlength.py
Last active October 7, 2023 19:54
NumPy run-length encoding / decoding
"""Run Length Encoding utilities for NumPy arrays.
Authors
-------
- Nezar Abdennur
- Anton Goloborodko
"""
from __future__ import division, print_function
import numpy as np