max values over specific intervals of a column vector
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a 166250x1 vector where i need to find the maximum value pr every 144 value and create a new vector with these peaks.
i just started to use matlab, so it might be simple, but i cant figure it out.
hope someone can help me
1 commentaire
Walter Roberson
le 3 Mar 2021
What do you want to do with the group of 74 left over after dividing into groups of 144?
Do you need the locations of the peaks or just the value?
Réponses (1)
Shiva Kalyan Diwakaruni
le 11 Mar 2021
Hi,
you can use movmax(A,k) function which returns an array of local k-point maximum values for Array A, where each maximum is calculated over a sliding window of length k across neighboring elements of A. When k is odd, the window is centered about the element in the current position. When k is even, the window is centered about the current and previous elements. The window size is automatically truncated at the endpoints when there are not enough elements to fill the window. When the window is truncated, the maximum is taken over only the elements that fill the window.
for more information on movmax you can follow the below link
thanks.
1 commentaire
Walter Roberson
le 11 Mar 2021
I interpreted the requirement as being that they want to divide the data up into disjoint segments of length 144 and take the maximum per segment.
N = 144;
nfull = floor(length(Vector)/N);
lastidx = nfull * N;
localmax = max(reshape(Vector(1:lastidx), N, 1), [], 1);
stump = max(Vector(lastidx+1:end));
localmax(end+1) = stump;
Voir également
Catégories
En savoir plus sur Data Distribution Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!