How to find the value before max value for vector for each 10 rows
조회 수: 2 (최근 30일)
이전 댓글 표시
i have a vector , A=1:1:100
I want to find the values befor max values , so the result wii be, 9 19 29 39 49 59 69 79 89 99
댓글 수: 0
채택된 답변
Karim
2022년 12월 29일
Hi see below for the stept to obtain such a vector
% set up the 'max row value indicator'
n = 10
% create array A
A = 1:100
% reshape into a matrix with a given numeber of elements:
B = reshape(A, [], n)
% find the max element for each group (which in this case has 10 elements),
% but we exclude the last (i.e. 10th) elements
maxval = max(B(1:end-1,:),[],1)
추가 답변 (0개)
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!