Extract element from a table
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Gaetano Pavone
il 10 Nov 2021
Risposto: Steven Lord
il 10 Nov 2021
I have a 56x4 table in which first column collects strings, while the other columns have non-null number.
edgetable=table(edgetype,edgeindex,firstnode,secondnode);
I would like to extract edgeindexes such that edgetype is equal, e.g., to "CSE".
0 Commenti
Risposta accettata
Steven Lord
il 10 Nov 2021
Let's make a sample table.
rng default
listOfTypes = ["apple"; "banana"; "cherry"];
T = listOfTypes(randi(numel(listOfTypes), 5, 1));
x = randi(10, 5, 1);
tt = table(T, x)
theCherries = tt(tt.T == "cherry", :)
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical 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!