How to normalize curves with multiple peaks such that each peak will be 1 and each valley will be 0?
24 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Haguy Wolfenson
el 20 de En. de 2019
Comentada: xiaoxiaoliu xiaoxiaoliu
el 7 de Sept. de 2020
Hello,
I am looking for a way to normalize curves with multiple peaks such that each local maximum and minimum will be set to 1 and 0 respectively, and that the values between the maxima and minima will be set accordingly.
Thanks,
Haguy.
2 comentarios
dpb
el 20 de En. de 2019
Only thing comes to mind would be to find each max/min pair and compute the necessary factor for those positions and then interpolate that scaling factor between each.
Providing an example data set would probably be beneficial.
Respuesta aceptada
dpb
el 20 de En. de 2019
Editada: dpb
el 28 de Ag. de 2020
If you mean 'builtin' already coded to do that, "No, I don't think so!" I've never seen it actually done before; don't think it's terribly common.
I don't have time to write full-blown code, but you should be able to follow along and write a function from a demo of the idea done at command line for the sample data--
y=x+abs(min(x)); % move whole trace to baseline first
findpeaks(y) % just to make the fancy plot
[pks,ipk]=findpeaks(y); % get the peaks, locations
[vlys,ivly]=findpeaks(-y); % and the valleys
vlys=-vlys; % back to correct sign of signal
hold on
plot(ivly,vlys-1,'^r','MarkerFaceColor','r');% add markers for the valleys just for fun
b=polyfit([ipk(1) ivly(1)],[1/pks(1) 0],1); % linear transformation peak-->1, valley-->0 first section
yhat=polyval(b,ipk(1):ivly(1)); % get the scale factor for the section
yhat=yhat.*y(ipk(1):ivly(1)).'; % and scale the actual data
yyaxis right % to plot the scaled on appropriate scale
hLy=plot((ipk(1):ivly(1)).',yhat,'k-'); % and plot that first section...
ylim([-0.2 1.6]) % just to make origins aline left/right axes...
polyfit([ivly(1) ipk(2)],[0 1/pks(2)],1) % now do the next section vly(1)-->0; pk(2)==>1
yhat=polyval(b,[ivly(1):ipk(2)]); % and rinse and repeat above pattern...
yhat=yhat.*y(ivly(1):ipk(2)).';
hold on
hLy(2)=plot((ivly(1):ipk(2)).',yhat,'k-');
hLg=legend(hLy(1),'Normalized','Location','northwest');
Above yields inserted image; your mission, should you choose to accept it, is to take the above and turn it into the general function walking through the located peaks and valleys. You'll have to decide just what to do about the end sections where you don't have the alternate peak/valley to use to fully define the linear transformation...it's purely a guess as to what that scaling factor should
be as it is not known what the other extremum or its location would have been.
6 comentarios
xiaoxiaoliu xiaoxiaoliu
el 29 de Ag. de 2020
This is the image from which your code runs,Thank you very much for your code.
xiaoxiaoliu xiaoxiaoliu
el 7 de Sept. de 2020
I found a formula for this solution, but I don't know how to program it.
%y is original data,max(i)is Local maximum; min(i) is Local minimum.
But I do not know how to write this program, I hope you can help me, thank you very much.
Más respuestas (2)
Sargondjani
el 20 de En. de 2019
Yeah, you would have to calculate a scaling factor for each peak/trough. In one dimension you can then use the scaling factor for each interval. In multiple dimensions you would have to interpolate the scaling factor.
1 comentario
dpb
el 20 de En. de 2019
That would be discontinuous tho, between the sections excepting in very unusual circumstances.
xiaoxiaoliu xiaoxiaoliu
el 28 de Ag. de 2020
How to normalize curves with multiple peaks such that each peak will be 1 and each valley will be -1?
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!