How can i delete max values for each 5 rows in vector
Show older comments
i have this vector A= 1 14 4 23 3 8 9 12 4 5 2 4 19 20 22
A=A'
The result will be R= 1 14 4 3 8 9 4 5 2 4 19 20
Accepted Answer
More Answers (1)
Davide Masiello
on 29 Dec 2022
Edited: Davide Masiello
on 29 Dec 2022
The following code will apply to any lenght of A and any length N of window from which to delete the maximum, provided that length(A)/N is an integer.
A = [1 14 4 23 3 8 9 12 4 5 2 4 19 20 22];
R = rmvMaxEveryN(A,5)
function out = rmvMaxEveryN(array,N)
[~,idx] = max(reshape(array,[N,length(array)/N]),[],1);
idx = idx+(0:N:length(array)-N);
array(idx) = [];
out = array;
end
3 Comments
abdullah al-dulaimi
on 29 Dec 2022
abdullah al-dulaimi
on 29 Dec 2022
Davide Masiello
on 29 Dec 2022
Sorry I realised later there was a mistake and adjusted my answer.
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!