xmos/lib_dsp

dsp_vector_abs often outputs negative numbers

oscarbailey-xmos opened this issue · 3 comments

e.g.

    int32_t vec1[1] = {1932};
    int32_t vec_result[1];
    dsp_vector_abs(vec1, vec_result, 1);
    // vec_result = {-1932};

this should be fixed

Fixed by Pull Request #199.

Nightly runs of various libraries that depend on this one have completed successfully. On that basis, I have closed the issue.