Retrieving minimum values for parts of a matrix
1 回表示 (過去 30 日間)
古いコメントを表示
Hi, I have a matrix containing different rows with values for several years. I need to retrieve the minimum value corresponding to each year. For example: A=[ 1958 2; 1958 3; 1959 4; 1959 5; 1959 6 ] The result matrix that I need would be: B=[ 1958 2; 1959 4 ]
Could you please help with this? Thanks
0 件のコメント
採用された回答
Azzi Abdelmalek
2016 年 5 月 17 日
編集済み: Azzi Abdelmalek
2016 年 5 月 17 日
A=[ 1958 2; 1958 3; 1959 4; 1959 5; 1959 6 ]
[ii,jj,kk]=unique(A(:,1))
out=[ii accumarray(kk,(1:numel(kk))',[],@(x) min(A(x,2)))]
0 件のコメント
その他の回答 (1 件)
Matt J
2016 年 5 月 17 日
編集済み: Matt J
2016 年 5 月 17 日
[i,~,s]=find( accumarray(A(:,1), A(:,2),[],@min ) );
B=[i,s]
参考
カテゴリ
Help Center および File Exchange で Linear Programming and Mixed-Integer Linear Programming についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!