How to select a specific element in a table using variables corresponding to table headers
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rafael Cordero
el 31 de Mayo de 2021
Hello all,
Imagine I have the following table T:
I would like to programatically extract a specific Order corresponding to a specific Reference that is given in a separate variable.
Example, for:
var_name = 'Charlie'
What is the syntax to extract Charlie's Order (i.e. 15) using var_name?
Thank you
0 comentarios
Respuesta aceptada
Stephen23
el 31 de Mayo de 2021
Editada: Stephen23
el 31 de Mayo de 2021
How to select data from a table is explained here:
Ref = {'Catherine';'Bob';'Fred';'Anna'};
Order = [15;13;13;4];
Lambda = [12;14;21;46];
% name you want to match:
name = 'Catherine';
By far the easiest way is to use row names:
T1 = table(Order,Lambda,'RowNames',Ref)
out = T1{name,'Order'}
Without row names requires the use of indexing (e.g. via STRCMP or similar):
T2 = table(Ref,Order,Lambda)
idx = strcmpi(T2.Ref,name);
out = T2{idx,'Order'}
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!