Peak over Threshold (POT) Method
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Can anyone help me?
I'm trying to find how to find the peaks over threshold = 3.
My code so far is:
%% PLOT TIMESERIES
figure ('color','white');
plot(Time(:,1),Hsig(:,1))
legend('Hsig')
title('Hourly Hsig values against time')
xlabel(['Day/month'])
ylabel(['Hsig wave power (P) Average'])
datetick('x','dd/mm')
print ('Hsig wave power (P) average');
----------------------------------------------------------------------
How can I use a Peak over Threshold (POT) method to identify the hours where Hsig>3m?
0 comentarios
Respuestas (1)
Jose M Medina
el 31 de Oct. de 2018
Sorry for this late answer. I suppose you have already solved yr problem. In my opinion you are a bit disoriented. First of all, your code is for plotting variables, not for choosing them. On the other hand, you shouldn't identify peaks separated by hours, but by days (usually 5, more or less) to be sure that each peak corresponds to a sea state. Finally, you should play with the data matrix of Hs and the one of Time, in order to choose the max Hs, after it, chose the second max and check that is not closer of the previously chosen less than thos 5 days (or any), and so on. It is a very manual procedure. Hope this helps.
0 comentarios
Ver también
Categorías
Más información sobre Clocks and Timers en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!