Click here to Skip to main content
15,885,216 members
Home / Discussions / Algorithms
   

Algorithms

 
AnswerRe: Real time peak identification Pin
YDaoust31-May-11 21:47
YDaoust31-May-11 21:47 
GeneralRe: Real time peak identification Pin
Wjousts1-Jun-11 8:17
Wjousts1-Jun-11 8:17 
GeneralRe: Real time peak identification Pin
YDaoust1-Jun-11 8:47
YDaoust1-Jun-11 8:47 
AnswerRe: Real time peak identification Pin
peterchen31-May-11 22:11
peterchen31-May-11 22:11 
GeneralRe: Real time peak identification Pin
Wjousts1-Jun-11 8:22
Wjousts1-Jun-11 8:22 
AnswerRe: Real time peak identification Pin
MartinW13071-Jun-11 0:22
MartinW13071-Jun-11 0:22 
AnswerRe: Real time peak identification Pin
Skymir1-Jun-11 2:59
Skymir1-Jun-11 2:59 
AnswerRe: Real time peak identification [modified] Pin
Antonino Porcino1-Jun-11 5:56
Antonino Porcino1-Jun-11 5:56 
I've done this with heart rate variability (HRV) and it's rather simple. Determine the frequency range of your useful data and setup a bandpass IIR or FIR filter to filter out all unwanted noise. Use matlab or similar tool to determine the coefficients of the filter. IIR filters are very easy to implement in code as they are just some floating point multiply ops. After your data is filtered, peaks can be easily identified with a simple rule e.g. if(sample[t] < sample[t-1]). All is in the design of the filter (compromise between delay vs and bandwidth).

modified on Thursday, June 2, 2011 3:38 AM

AnswerRe: Real time peak identification Pin
DMJ0011-Jun-11 10:12
DMJ0011-Jun-11 10:12 
GeneralRe: Real time peak identification Pin
largenqcd1-Jun-11 17:33
largenqcd1-Jun-11 17:33 
QuestionBest fit polynomial curve to non-continuous data points [Solved] Pin
Ian Shlasko23-May-11 4:43
Ian Shlasko23-May-11 4:43 
AnswerRe: Best fit polynomial curve to non-continuous data points Pin
_Erik_23-May-11 5:07
_Erik_23-May-11 5:07 
GeneralRe: Best fit polynomial curve to non-continuous data points Pin
Ian Shlasko23-May-11 5:20
Ian Shlasko23-May-11 5:20 
GeneralRe: Best fit polynomial curve to non-continuous data points Pin
_Erik_23-May-11 5:25
_Erik_23-May-11 5:25 
AnswerRe: Best fit polynomial curve to non-continuous data points Pin
Luc Pattyn23-May-11 5:20
sitebuilderLuc Pattyn23-May-11 5:20 
GeneralRe: Best fit polynomial curve to non-continuous data points Pin
Ian Shlasko23-May-11 6:02
Ian Shlasko23-May-11 6:02 
AnswerRe: Best fit polynomial curve to non-continuous data points Pin
Luc Pattyn23-May-11 6:12
sitebuilderLuc Pattyn23-May-11 6:12 
GeneralRe: Best fit polynomial curve to non-continuous data points Pin
Ian Shlasko23-May-11 7:28
Ian Shlasko23-May-11 7:28 
AnswerRe: Best fit polynomial curve to non-continuous data points Pin
Luc Pattyn23-May-11 7:50
sitebuilderLuc Pattyn23-May-11 7:50 
AnswerRe: Best fit polynomial curve to non-continuous data points Pin
Graham Toal23-May-11 9:54
Graham Toal23-May-11 9:54 
AnswerRe: Best fit polynomial curve to non-continuous data points Pin
Ian Shlasko23-May-11 9:58
Ian Shlasko23-May-11 9:58 
AnswerRe: Best fit polynomial curve to non-continuous data points Pin
Alan Balkany24-May-11 3:25
Alan Balkany24-May-11 3:25 
GeneralRe: Best fit polynomial curve to non-continuous data points Pin
Ian Shlasko24-May-11 3:41
Ian Shlasko24-May-11 3:41 
GeneralRe: Best fit polynomial curve to non-continuous data points Pin
Alan Balkany24-May-11 3:43
Alan Balkany24-May-11 3:43 
GeneralRe: Best fit polynomial curve to non-continuous data points Pin
Ian Shlasko24-May-11 3:46
Ian Shlasko24-May-11 3:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.