max values over specific intervals of a column vector
이전 댓글 표시
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
Walter Roberson
2021년 3월 3일
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?
답변 (1개)
Shiva Kalyan Diwakaruni
2021년 3월 11일
0 개 추천
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
Walter Roberson
2021년 3월 11일
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;
카테고리
도움말 센터 및 File Exchange에서 Descriptive Statistics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!