Azzera filtri
Azzera filtri

Sorting content of table columns

5 visualizzazioni (ultimi 30 giorni)
Hello Community, please I've a table consisting of numbers, I want to sort column 2 in any order(ascending or decending). I've attached a picture of my table to this question.
  2 Commenti
Guillaume
Guillaume il 8 Ott 2018
Please do not ask the same question multiple time. It's a waste of our effort.
Isaac Osei Agyemang
Isaac Osei Agyemang il 9 Ott 2018
My mistake, sorry, thought the first post didn't get through. My apologies.

Accedi per commentare.

Risposta accettata

ANKUR KUMAR
ANKUR KUMAR il 8 Ott 2018
I am giving an example to explain.
clc
clear
load patients
T = table(Gender,Age,Height,Weight,Smoker,Systolic,Diastolic);
If you wish to sort Age out of table, then use
sort(T.Age,'ascend');
Attach you .mat file to get more clarification.
  8 Commenti
Isaac Osei Agyemang
Isaac Osei Agyemang il 8 Ott 2018
Modificato: Isaac Osei Agyemang il 8 Ott 2018
Thanks, I've finally been able to do it using your codes.
AA = sort(graphs{1,1}.Edges.EndNode)
graphs{1,1}.Edges.EndNode = AA.
it works fine, Thank You very much.
Guillaume
Guillaume il 8 Ott 2018
Modificato: Guillaume il 8 Ott 2018
it works fine
It may appear that it does and it may give you the correct result under some circumstances. In the majority of cases, it will give a completely wrong result because sort is the wrong function to use as it will sort each column separately.
I gave you the correct solution in your other identical question, b.t.w. You should read the comments to the question there as well. Until you learn to work properly with graphs, you will run into this sort of problems.

Accedi per commentare.

Più risposte (1)

KSSV
KSSV il 8 Ott 2018
Read about sort
  1 Commento
Isaac Osei Agyemang
Isaac Osei Agyemang il 8 Ott 2018
I've read about sort, sortrow, sortcols but I'm still having problems with what i want to do.

Accedi per commentare.

Categorie

Scopri di più su Shifting and Sorting 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