Effacer les filtres
Effacer les filtres

what is the result?

3 vues (au cours des 30 derniers jours)
diadalina
diadalina le 24 Oct 2017
Modifié(e) : KSSV le 24 Oct 2017
X a matrix 2 × n containing the coordinates of n points of the plan. How to obtain a matrix where the points are ordered by ascending order of the x-axis?

Réponse acceptée

KSSV
KSSV le 24 Oct 2017
Modifié(e) : KSSV le 24 Oct 2017
n = 100 ;
X = rand(2,n) ; % some random data
[val,idx] = sort(X(1,:),'ascend') ; % sort x values (first row) in ascending order
X = X(:,idx) ;

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by