Thread Subject: finding peaks and base of peaks

Subject: finding peaks and base of peaks

From: vince mancuso

Date: 27 May, 2009 18:25:04

Message: 1 of 11

hi, im trying to figure out how to find the peaks and begining and end of the peaks from just data points given to be graphed..

i want be able to store these peaks as variables and use their position

 anyone know how to do this??

Subject: finding peaks and base of peaks

From: someone

Date: 27 May, 2009 18:49:02

Message: 2 of 11

"vince mancuso" <vinmania99@yahoo.com> wrote in message <gvk0i0$555$1@fred.mathworks.com>...
> hi, im trying to figure out how to find the peaks and begining and end of the peaks from just data points given to be graphed..
>
> i want be able to store these peaks as variables and use their position
>
> anyone know how to do this??

% Download and try extrema from the MATLAB FEX at:

http://www.mathworks.com/matlabcentral/fileexchange/12275

Subject: finding peaks and base of peaks

From: Rajiv Singh

Date: 27 May, 2009 19:05:06

Message: 3 of 11

There is a FINDPEAKS command in Signal Processing Toolbox that might be
useful.

Rajiv


"vince mancuso" <vinmania99@yahoo.com> wrote in message
news:gvk0i0$555$1@fred.mathworks.com...
> hi, im trying to figure out how to find the peaks and begining and end of
> the peaks from just data points given to be graphed..
>
> i want be able to store these peaks as variables and use their position
>
> anyone know how to do this??

Subject: finding peaks and base of peaks

From: Chaos

Date: 27 May, 2009 21:54:02

Message: 4 of 11

"vince mancuso" <vinmania99@yahoo.com> wrote in message <gvk0i0$555$1@fred.mathworks.com>...
> hi, im trying to figure out how to find the peaks and begining and end of the peaks from just data points given to be graphed..
>
> i want be able to store these peaks as variables and use their position
>
> anyone know how to do this??

learn how to program and use steepest descent.

Subject: finding peaks and base of peaks

From: vince mancuso

Date: 28 May, 2009 15:00:18

Message: 5 of 11

"someone" <someone@somewhere.net> wrote in message <gvk1ut$5p2$1@fred.mathworks.com>...
> "vince mancuso" <vinmania99@yahoo.com> wrote in message <gvk0i0$555$1@fred.mathworks.com>...
> > hi, im trying to figure out how to find the peaks and begining and end of the peaks from just data points given to be graphed..
> >
> > i want be able to store these peaks as variables and use their position
> >
> > anyone know how to do this??
>
> % Download and try extrema from the MATLAB FEX at:
>
> http://www.mathworks.com/matlabcentral/fileexchange/12275

hey someone...

 im not sure if you know this, but my graph has many peaks, is their a way to just get the ones that are the biggest? also, can u store these as variables?

Subject: finding peaks and base of peaks

From: Daniel

Date: 28 May, 2009 15:14:02

Message: 6 of 11

Can you simply use max and min functions? They can return the value and/or the index of that value.

-Dan

> hey someone...
>
> im not sure if you know this, but my graph has many peaks, is their a way to just get the ones that are the biggest? also, can u store these as variables?

Subject: finding peaks and base of peaks

From: vince mancuso

Date: 28 May, 2009 15:34:01

Message: 7 of 11

"Daniel " <djs32@buffalo.edu> wrote in message <gvm9nq$b5h$1@fred.mathworks.com>...
> Can you simply use max and min functions? They can return the value and/or the index of that value.
>
> -Dan
>
> > hey someone...
> >
> > im not sure if you know this, but my graph has many peaks, is their a way to just get the ones that are the biggest? also, can u store these as variables?


Dan, i was just trying that.. i can find the peaks, do you know anyway to find where the begging and ending point of that peak's base ?

Subject: finding peaks and base of peaks

From: someone

Date: 28 May, 2009 16:10:03

Message: 8 of 11

"vince mancuso" <vinmania99@yahoo.com> wrote in message <gvm8u2$fg6$1@fred.mathworks.com>...
> "someone" <someone@somewhere.net> wrote in message <gvk1ut$5p2$1@fred.mathworks.com>...
> > "vince mancuso" <vinmania99@yahoo.com> wrote in message <gvk0i0$555$1@fred.mathworks.com>...
> > > hi, im trying to figure out how to find the peaks and begining and end of the peaks from just data points given to be graphed..
> > >
> > > i want be able to store these peaks as variables and use their position
> > >
> > > anyone know how to do this??
> >
> > % Download and try extrema from the MATLAB FEX at:
> >
> > http://www.mathworks.com/matlabcentral/fileexchange/12275
>
> hey someone...
>
> im not sure if you know this, but my graph has many peaks, is their a way to just get the ones that are the biggest?

FYI, there can only be ONE biggest.

 also, can u store these as variables?

Did you even bother to look at extrema?

It does EXACTLY waht you descrbe you want to do!

Subject: finding peaks and base of peaks

From: Lucio Cetto

Date: 28 May, 2009 16:24:02

Message: 9 of 11

You should try
http://www.mathworks.com/access/helpdesk/help/toolbox/bioinfo/index.html?/access/helpdesk/help/toolbox/bioinfo/ref/mspeaks.m
Algorithm is robust against noisy data, oversegmentation and poor peak resolution. The core of the algorithm uses wavelet denoising.
Lucio

"vince mancuso" <vinmania99@yahoo.com> wrote in message <gvk0i0$555$1@fred.mathworks.com>...
> hi, im trying to figure out how to find the peaks and begining and end of the peaks from just data points given to be graphed..
>
> i want be able to store these peaks as variables and use their position
>
> anyone know how to do this??

Subject: finding peaks and base of peaks

From: ImageAnalyst

Date: 28 May, 2009 16:57:16

Message: 10 of 11

On May 28, 12:24 pm, "Lucio Cetto" <lce...@nospam.mathworks.com>
wrote:
> You should tryhttp://www.mathworks.com/access/helpdesk/help/toolbox/bioinfo/index.h...
> Algorithm is robust against noisy data, oversegmentation and poor peak resolution. The core of the algorithm uses wavelet denoising.
> Lucio
---------------------------------------------
That link is broken.

Subject: finding peaks and base of peaks

From: Lucio Cetto

Date: 28 May, 2009 18:42:01

Message: 11 of 11

Sorry, I meant
http://www.mathworks.com/access/helpdesk/help/toolbox/bioinfo/ref/mspeaks.html
Lucio

ImageAnalyst <imageanalyst@mailinator.com> wrote in message <6c1fcd3e-ba51-40ce-a384-93f510278ad3@j32g2000yqh.googlegroups.com>...
> On May 28, 12:24?pm, "Lucio Cetto" <lce...@nospam.mathworks.com>
> wrote:
> > You should tryhttp://www.mathworks.com/access/helpdesk/help/toolbox/bioinfo/index.h...
> > Algorithm is robust against noisy data, oversegmentation and poor peak resolution. The core of the algorithm uses wavelet denoising.
> > Lucio
> ---------------------------------------------
> That link is broken.

Tags for this Thread

Everyone's Tags:

Add a New Tag:

Separated by commas
Ex.: root locus, bode

What are tags?

A tag is like a keyword or category label associated with each thread. Tags make it easier for you to find threads of interest.

Anyone can tag a thread. Tags are public and visible to everyone.

Tag Activity for This Thread
Tag Applied By Date/Time
peaks joe saucer 27 May, 2009 14:29:14
graphs joe saucer 27 May, 2009 14:29:14
rssFeed for this Thread

Contact us at files@mathworks.com