photo

Thang Vu


Last seen: 4 years ago Active since 2019

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
Finding the position of the 1st,2nd and 3rd max value in a matrix
function [U, I] = Xmax(X, i) % i is the x-largest value for j = 1: i-1 [U, I] = max(X); X(I) = -Inf; [U, ...

5 years ago | 0