Azzera filtri
Azzera filtri

Random set of vectors and sort them via the x axis

2 visualizzazioni (ultimi 30 giorni)
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']

Risposta accettata

Bjorn Gustavsson
Bjorn Gustavsson il 5 Dic 2020
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

Più risposte (0)

Categorie

Scopri di più su Sparse Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by