Digital filter method for pulse wave extraction, and digital filter
A digital filter, filter technology, applied in the field of medical electronics, can solve the problems of multi-PCB space, occupation, trouble, etc.
- Summary
- Abstract
- Description
- Claims
- Application Information
AI Technical Summary
Problems solved by technology
Method used
Image
Examples
Embodiment Construction
[0087] The digital filter runs in the MCU in the form of software code. The following is implemented in C language. Through the embedded development environment, compile and connect to generate the target code, and download it to the MCU through the jtag interface. For each digital filter, the input sequence is x(n), and the output sequence is y(n).
[0088] / / Define the data buffer data length
[0089] #define DATA_LENGTH 200
[0090] / / Define the IIR high-pass filter coefficients
[0091] double float a[2]={1,-2,1};
[0092] double float b[2]={1,-1.982228929792528,0.982385450614125};
[0093] / / Define the IIR low-pass filter coefficients
[0094] double float a[2][2]={1,2,1,1,2,1,1,2,1};
[0095] double float a[2][2]=
[0096] {
[0097] 1, -1.404384890471582,0.735915191196472,
[0098] 1, -1.142980502539901,0.412801598096189,
[0099] 1,-1.032069405319710,0.275707942472944};
[0100] / / Define FIR low-pass filter coefficients
[0101] double float h[36]=
[0102] ...
PUM
Abstract
Description
Claims
Application Information
- R&D Engineer
- R&D Manager
- IP Professional
- Industry Leading Data Capabilities
- Powerful AI technology
- Patent DNA Extraction
Browse by: Latest US Patents, China's latest patents, Technical Efficacy Thesaurus, Application Domain, Technology Topic, Popular Technical Reports.
© 2024 PatSnap. All rights reserved.Legal|Privacy policy|Modern Slavery Act Transparency Statement|Sitemap|About US| Contact US: help@patsnap.com