LOADAVG Loading eeg average data file from Neuroscan into matlab.

Usage: >> [signal, variance, chan_names, pnts, rate, xmin, xmax] = loadavg( filename );

Inputs:
filename   
input Neuroscan .avg file
signal   
output signal
variance   
variance of the signal
chan_names   
array that represent the name of the electrodes

Example: % load data into the array named 'signal'
[signal]   
loadavg( 'test.avg' ); % plot the signal for the first electrode plot( signal(1,:) );

See also: eeglab (a graphical interface for eeg ploting, space frequency
decomposition, ica, ... under Matlab).

See the matlab file loadavg.m (may require other functions)

Back to functions