フィルターのクリア

Random set of vectors and sort them via the x axis

2 ビュー (過去 30 日間)
Raz134
Raz134 2020 年 12 月 5 日
コメント済み: Rik 2020 年 12 月 8 日
Hello, i created a script which creates N amount of random vectors (with random set of x and y coordinates), where you can decide how many you want to be created. Is there a way to sort them in an ascending fasion via the x coordiantes and if x coordinates are the same via the y coordinate? I cant seem to make it work.
How can i sort these vectors?
N = input('Wieviele Vektoren wollen Sie erzeugen?:');
Asize = [50,50];
[Ix,Iy] = ind2sub(Asize,randperm(prod(Asize),N));
I = [Ix',Iy']

採用された回答

Bjorn Gustavsson
Bjorn Gustavsson 2020 年 12 月 5 日
Have a look at the help and documentation of the function sortrows. Also (if this is a educational programming task) read the help and documentation of the function sort and make use of that in a step-by-step algorithm.
HTH

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSparse Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by