Comparing 2 columns of a matrix
1 回表示 (過去 30 日間)
古いコメントを表示
I want to compare 2 columns of my matrix as shown below:
![mat.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/205518/mat.png)
For example, I have the number 4 in the first column occurring thrice. I need to compare it's corresponding values in column 2 and obtain the minimum value among them. I then need to store that value in another matrix.
Could someone suggest me a way to get this desired result.
Thanks and regards
0 件のコメント
採用された回答
Star Strider
2019 年 2 月 23 日
A = [randi(10, 20, 1) rand(20,1)] % Create Data
[A1u,~,idx] = unique(A(:,1)); % Unique Values & Indices
MinVals = accumarray(idx, A(:,2), [], @(x)min(x)); % Find Minimum Of Each
Result = [A1u, MinVals] % Desired Result
Use your own matrix for ‘A’.
4 件のコメント
その他の回答 (1 件)
Image Analyst
2019 年 2 月 23 日
You can do this easily with unique() and histogram() or histcounts(). Since you didn't include your data in a way that's easy for us to code up, I assume you'd prefer to do it yourself, so give it a try. If you run into problems, attach your data and explain the problem(s).
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!