i have a lot of data in a range of 0 until 250. this data is no descending or ascending order. Its random data.Now i want to classified this data into meditation & attention state. i need to classified the data using a range
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
while 1
brain=fread(bt)
if (100<brain) && ( brain<150)
disp ( 'attention')
end
end
0 Commenti
Risposta accettata
KSSV
il 29 Nov 2018
data = randsample(0:250,250)' ;
C = cell(length(data),1) ;
brain = 50 ;
idx = 100<data & data<150 ; % check this properly
C(idx) = {'attention'} ;
C(~idx) = {'meditation'} ;
T = table(data,C)
0 Commenti
Più risposte (1)
madhan ravi
il 29 Nov 2018
while 1
brain=fread(bt)
if (100<brain) && ( brain<150)
disp ( 'attention')
elseif .....condition goes here
disp('meditation')
end
end
0 Commenti
Vedere anche
Categorie
Scopri di più su Neuroimaging in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!