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 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    nor syafiqah
 el 29 de Nov. de 2018
  
    
    
    
    
    Respondida: KSSV
      
      
 el 29 de Nov. de 2018
            while 1
    brain=fread(bt)
   if (100<brain) && ( brain<150)
   disp ( 'attention')
   end 
end
0 comentarios
Respuesta aceptada
  KSSV
      
      
 el 29 de Nov. de 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 comentarios
Más respuestas (1)
  madhan ravi
      
      
 el 29 de Nov. de 2018
        while 1
    brain=fread(bt)
   if (100<brain) && ( brain<150)
   disp ( 'attention')
elseif .....condition goes here
disp('meditation')
   end 
end
0 comentarios
Ver también
Categorías
				Más información sobre Neuroimaging en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


