how to arrange vectors in descending order?

11 ビュー (過去 30 日間)
Sadiq Akbar
Sadiq Akbar 2020 年 10 月 12 日
コメント済み: Sadiq Akbar 2020 年 10 月 12 日
I have 100 vectors of size 100x8 each as is given in the attachment. I want to arrange them in descending order row-wise only.i.e. the elements of each vector should not be changed but they must be arranged in descending order only. say for example if I have two vectors as given below:
v1=[1 2 3 4 5 6 7 8]
v2=[2 3 4 5 6 7 8 9]
Then they must be arranged in descending order like
v2=[2 3 4 5 6 7 8 9] % bigger vector 1st
v1=[1 2 3 4 5 6 7 8] % smallerr vector next
In my excel file given in attachement, assume that all these vectors are stored in a matrix called ErrorVectors.
  1 件のコメント
Asad (Mehrzad) Khoddam
Asad (Mehrzad) Khoddam 2020 年 10 月 12 日
First you should have a criteria for comparing two vectors like sum of errors or sum of square of errors.

サインインしてコメントする。

回答 (2 件)

Asad (Mehrzad) Khoddam
Asad (Mehrzad) Khoddam 2020 年 10 月 12 日
% read matrix into A then
%
sumError = sum(A.^2,2);
% sort the total error
[~, ind] = sort(sumError,'descend')
Asorted = A(ind,:)
  1 件のコメント
Sadiq Akbar
Sadiq Akbar 2020 年 10 月 12 日
Thank you very much dear KSSV and Asad (Mehrzad) Khoddam. I ran the programs of both of you, but they changes the contents of the vector also.
Then I found solution on below URL and it worked.
URL:https://www.mathworks.com/matlabcentral/answers/96995-how-can-i-sort-the-rows-of-a-matrix-in-descending-order-in-matlab-7-0-1-r14sp1#:~:text=Accepted%20Answer,-MathWorks%20Support%20Team&text=The%20SORTROWS%20function%20offers%20the,second%20argument%20to%20the%20function.
Thank you once again to both of you.
Regards

サインインしてコメントする。


KSSV
KSSV 2020 年 10 月 12 日
A = rand(10,5) ;
[m,n] = size(A) ;
B = A ;
for i = 1:n
B(:,i) = sort(A(:,i),'descend') ;
end

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by