I have a table with three columns (a,b,c) and hundreds of rows. How can I extract all the values of b and c when a=x?

2 Kommentare

Turlough Hughes
Turlough Hughes am 19 Jun. 2020
So you have a table with T.a, T.b and T.c?
Isaac Hassen
Isaac Hassen am 19 Jun. 2020
Yes, I have a table let say
a b c
1 1 1
1 5 50
1 10 11
2 4 49
3 67 100
when a=1
b c
1 1
5 50
10 11

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

madhan ravi
madhan ravi am 19 Jun. 2020

0 Stimmen

TablE(TablE.a == x, 2:3) % x is a numeric scalar , use strcmp(...) if it’s a string or a char

Weitere Antworten (0)

Kategorien

Mehr zu Language Fundamentals finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by