Back to C-ASPT Contents Page
asptRtrlslattice32f
API Summary
API to create and delete an asptRtrlslattice32f filter
API to filter and update an asptRtrlslattice32f filter
API to retrieve the properties of an asptRtrlslattice32f filter
API to set the properties of an asptRtrlslattice32f filter
Description
Implements the Real-time Recursive Least Squares Lattice joint process estimator using the a posteriori estimation errors. This version does not keep the previous lattice nor linear combiner coefficients in memory, therefore saving 3*L memory locations. It is not useful however if the system configuration depend on the filter values, such as in system identification applications.
Copyright
Copyright (c) DSP ALGORITHMS 2003; all rights reserved.
<< Back to top
rtrlslattice32fInit
DT32S rtrlslattice32fInit(asptRtrlslattice32f *rlsl, DT32S L, DT32F mu)
Initializes an asptRtrlslattice32f filter and allocates its necessary storage buffers - Returns :
-
Error code. On failure, the filterLength member of the filter is set to zero.
- Input Parameters :
- rlsl : pointer to asptRtrlslattice32f filter to be initializes
- L : number of linear combiner coefficients
- mu : forgetting factor
- Output Parameters :
- rlsl is initialized using the given input arguments.
- Error Conditions
- ASPT_NO_ERR : Initialization is successful
- ASPT_NULL_PTR_ERR : rlsl is a NULL pointer
- ASPT_RANGE_ERR : L is not a valid input value
- ASPT_NO_MEM_ERR : could not allocate memory
<< Back to top
rtrlslattice32fInitStatic
DT32S rtrlslattice32fInitStatic(asptRtrlslattice32f *rlsl, DT32S L, DT32F mu, DT32F *pDat)
Initializes an asptRtrlslattice32f filter to use pre-allocated memory blocks - Returns :
-
Error code. On failure, the filterLength member of the filter is set to zero.
- Input Parameters :
- rlsl : pointer to asptRtrlslattice32f filter to be initialized
- L : number of linear combiner coefficients
- mu : forgetting factor
- pDat : pointer to a pre-allocated memory in data memory of at least
[6*len] DT32F locations to be used for data storage.
- Output Parameters :
- rlsl is initialized using the given input arguments.
- Error Conditions
- ASPT_NO_ERR : Initialization is successful
- ASPT_NULL_PTR_ERR : rlsl/pDat is a NULL pointer
- ASPT_RANGE_ERR : len is not a valid input value
<< Back to top
rtrlslattice32fFilterUpdate
DT32F rtrlslattice32fFilterUpdate(asptRtrlslattice32f *rlsl, DT32F x, DT32F d)
Calculates the filter output and updates the PARCOR and linear combiner coefficients of an asptRtrlslattice32f filter. - Returns :
- Input Parameters :
- rlsl : pointer to asptRtrlslattice32f filter.
- x : input sample.
- d : desired sample.
- Remarks :
-
The error sample is stored internally and can be retrieved by calling rtrlslattice32fGetLastErrorSample().
<< Back to top
rtrlslattice32fFree
void rtrlslattice32fFree(asptRtrlslattice32f *rlsl)
Frees the allocated memory for this asptRtrlslattice32f filter. - Returns :
- Input Parameters :
- rlsl : pointer to the asptRtrlslattice32f filter
- Remarks :
-
Use this function only for asptRtrlslattice32f filters created using rtrlslattice32fInit(). Do not use with filters created with rlsLattice32fInitStatic().
<< Back to top
rtrlslattice32fReset
DT32S rtrlslattice32fReset(asptRtrlslattice32f *rlsl)
Resets all internal filter states to pre-defined initial state.- Returns :
- Input Parameters :
- rlsl : pointer to an asptRtrlslattice32f filter to be reset
- Error Conditions
- ASPT_NO_ERR : success
- ASPT_NULL_PTR_ERR : NULL pointer error
<< Back to top
rtrlslattice32fGetDelayLine
DT32S rtrlslattice32fGetDelayLine(asptRtrlslattice32f *rlsl, DT32F *buf, DT32S ind, DT32S N, DT32S flip)
Copies the N internal backward prediction error samples starting from delayLine[ind] sample to the given array. - Returns :
-
On success returns the number of samples copied, otherwise the error code (negative DT32S).
- Input Parameters :
- rlsl : pointer to an asptRtrlslattice32f filter.
- dstBuf : pointer to the destination buffer.
- ind : index to the first sample to be copied.
- N : number of samples to be copied.
- flip : if 1, will flip the samples order.
- Error Conditions
- ASPT_NULL_PTR_ERR : newCoef/rlsl is a NULL pointer
- ASPT_RANGE_ERR : ind/N is not a valid input value
<< Back to top
rtrlslattice32fSetDelayLine
DT32S rtrlslattice32fSetDelayLine(asptRtrlslattice32f *rlsl, DT32F *buf, DT32S ind, DT32S N, DT32S flip)
Initializes N internal backward prediction error samples starting from delayLine[ind] to the contents of newBuf. - Returns :
-
On success returns the number of samples copied, otherwise the error code (negative DT32S).
- Input Parameters :
- rlsl : pointer to an asptRtrlslattice32f filter to be set.
- newBuf : pointer to the new PARCOR vector.
- ind : index to the first coefficient to be set.
- N : number of coefficients to be set.
- flip : if 1, will flip the coefficients order.
- Error Conditions
- ASPT_NULL_PTR_ERR : newBuf/rlsl is a NULL pointer
- ASPT_RANGE_ERR : ind/N is not a valid input value
<< Back to top
rtrlslattice32fResize
DT32S rtrlslattice32fResize(asptRtrlslattice32f *rlsl, DT32S newLength)
Resizes an asptRtrlslattice32f filter keeping as much of the filter state as possible. - Returns :
- Input Parameters :
- rlsl : pointer to the asptRtrlslattice32f filter to be resized.
- newLen : required new filter length.
- Error Conditions
- ASPT_NO_ERR : Resizing is successful
- ASPT_NULL_PTR_ERR : NULL pointer error
- ASPT_RANGE_ERR : newLength is not a valid input value
- ASPT_NO_MEM_ERR : Could not allocate the necessary filter storage
- Remarks :
-
Use this function only with dynamically allocated asptRtrlslattice32f filters.