LIBML
Version 3.2.4
LIBML DSP Software Library
|
Functions | |
void | tpt_q15_to_f32 (f32_t *aOutData, const q15_t *aInData, uint32_t aCount) |
Converts the elements of the Q15 vector to floating-point vector. More... | |
void | tpt_q15_to_f64 (f64_t *aOutData, const q15_t *aInData, uint32_t aCount) |
Converts the elements of the Q15 vector to floating-point vector. More... | |
Converts the elements of the Q15 vector to floating-point vector.
[out] | aOutData | points to the floating-point output vector |
[in] | aInData | points to the Q15 input vector |
[in] | aCount | number of samples in each vector |
aOutData[n] = (f32_t) aInData[n] / 32768; 0 <= n < aCount.
Converts the elements of the Q15 vector to floating-point vector.
[out] | aOutData | points to the floating-point output vector |
[in] | aInData | points to the Q15 input vector |
[in] | aCount | number of samples in each vector |
aOutData[n] = (f64_t) aInData[n] / 32768; 0 <= n < aCount.