Copying Data into a table

조회 수: 2 (최근 30일)
Youssef Darwich
Youssef Darwich 2020년 6월 13일
댓글: Youssef Darwich 2020년 6월 13일
Hello Guys,
I'am new to MATLAB and need your help.
I have a table 'T' and i need to copy its Values which correspond to 'T.STAT = 0' into other table 'T_new'
T :
STAT TIME X Y Z
____ ____ _____ ______ _______
1 491 62.15 18.85 3.2843
255 0 174.9 151.05 0
255 0 0 0 0
255 0 0 0 0
0 0 0.25 18.85 0.69607
0 4 0.25 18.85 0.65686
6 9 0.2 18.75 0.5098
0 14 0.15 18.5 0.22549
0 19 0.05 17.95 0.20588
0 24 0 17.1 0.14705
8 29 0 16 0.12745
0 34 0.1 14.85 0.10784
0 39 0.3 13.8 0.13725
0 44 0.6 13 0.13725
0 49 1.05 12.4 0.15686
for T.STAT (1:end) if (T.STAT) == 0 T_new = T end end
Error: Invalid use of operator
Getting this error

채택된 답변

madhan ravi
madhan ravi 2020년 6월 13일
편집: madhan ravi 2020년 6월 13일
NewTable = T(T.STAT==0, :)
  댓글 수: 1
Youssef Darwich
Youssef Darwich 2020년 6월 13일
thank you, this was very helpful :)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Language Fundamentals에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by