Feeds
已回答
How to find the fifth largest value in a matrix
B=unique(A); % 'unique' also sorts A in the ascending order. disp(B(end-4))
How to find the fifth largest value in a matrix
B=unique(A); % 'unique' also sorts A in the ascending order. disp(B(end-4))
6 years 前 | 0
