zephyrproject-rtos / zscilib

An open-source scientific computing library for embedded systems running Zephyr OS or standalone.
https://zephyrproject-rtos.github.io/zscilib/
Apache License 2.0
141 stars 27 forks source link

matrises: missing break in zsl_mtx_binary_op() #47

Open ruehlchris opened 1 year ago

ruehlchris commented 1 year ago

https://github.com/zephyrproject-rtos/zscilib/blob/0035be5e6a45e4ab89755b176d305d7a877fc79c/src/matrices.c#L316

Looks like incomplete code in function zsl_mtx_binary_op(). Missing 'break;' in switch statement start at ZSL_MTX_BINARY_OP_MEAN:

Please correct.