Azzera filtri
Azzera filtri

sum in intervals from columns

1 visualizzazione (ultimi 30 giorni)
Annick
Annick il 2 Apr 2020
Risposto: Ameer Hamza il 2 Apr 2020
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?

Risposta accettata

Ameer Hamza
Ameer Hamza il 2 Apr 2020
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);

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by