Extracting values from table/ matrices

조회 수: 1 (최근 30일)
Isaac Hassen
Isaac Hassen 2020년 6월 19일
댓글: Isaac Hassen 2020년 6월 19일
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
Turlough Hughes
Turlough Hughes 2020년 6월 19일
So you have a table with T.a, T.b and T.c?
Isaac Hassen
Isaac Hassen 2020년 6월 19일
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

댓글을 달려면 로그인하십시오.

채택된 답변

madhan ravi
madhan ravi 2020년 6월 19일
TablE(TablE.a == x, 2:3) % x is a numeric scalar , use strcmp(...) if it’s a string or a char

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by