oseiskar / simdkalman

Python Kalman filters vectorized as Single Instruction, Multiple Data
https://simdkalman.readthedocs.io/
MIT License
176 stars 36 forks source link

example.py error #2

Closed robmarkcole closed 6 years ago

robmarkcole commented 6 years ago

On running the example, I receive the error:

ValueError: ("Size of label '%s' for operand %d does not match previous terms.", 'B', 1)
oseiskar commented 6 years ago

Thanks for reporting :+1:. This is caused by numpy 1.14, which somehow seems to break the einsum function. I'll take a closer look. In the meantime, you can test this package by downgrading numpy to version 1.13 (pip install numpy==1.13)

oseiskar commented 6 years ago

This was caused by https://github.com/numpy/numpy/issues/10343

oseiskar commented 6 years ago

Fixed and released 0.9.3