필터 지우기
필터 지우기

sum in intervals from columns

조회 수: 1 (최근 30일)
Annick
Annick 2020년 4월 2일
답변: Ameer Hamza 2020년 4월 2일
Hello!
I would like to have an code that tells me how much time the subject spent in a certain position (0,1,2).
Currently I have written this code, which tells me how often the value is (0,1,2) but I don't know how to write a code which does what I am looking for.
N= ActivityCode1
Sed_idx= find(N(:,1)==0);
LPA_idx= find(N(:,1)==1);
MVPA_idx= find(N(:,1)==2)
Could you please help me?

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 4월 2일
This code add the intervals corresponding to activities 0,1, and 2. The final matrix is 3x1
t = readtable('Table1.txt');
t(end,:) = []; % last line is invalid
intervals = t.Interval;
activity = t.ActivityCode1;
result = accumarray(activity+1, intervals);

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by