plateform
stringclasses
1 value
repo_name
stringlengths
13
113
name
stringlengths
3
74
ext
stringclasses
1 value
path
stringlengths
12
229
size
int64
23
843k
source_encoding
stringclasses
9 values
md5
stringlengths
32
32
text
stringlengths
23
843k
github
ZijingMao/baselineeegtest-master
readegi.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/readegi.m
5,517
utf_8
de08c5adb26f9e5f5987d0b8a286debe
% readegi() - read EGI Simple Binary datafile (versions 2,3,4,5,6,7). % Return header info, EEG data, and any event data. % Usage: % >> [head, TrialData, EventData, CatIndex] = readegi(filename, dataChunks, forceversion) % % Required Input: % filename = EGI data filename % % Optional Input: % dataChunks = v...
github
ZijingMao/baselineeegtest-master
compvar.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/compvar.m
2,722
utf_8
006f804a7dec1ca7f3ad1fb6a588e688
% compvar() - project selected components and compute the variance of % the original data they account for. % % Usage: % >> [proj, variance] = compvar( data, wts_or_act, winv, components); % % Required Inputs: % data - 2-D (channels, points) or 3-D (channels, frames, trials) % dat...
github
ZijingMao/baselineeegtest-master
plotsphere.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/plotsphere.m
4,822
utf_8
5a1e3b5a681d7d5be1d6ad3d5a0d3f0e
% plotsphere() - This function is used to plot a sphere and % project them onto specific surfaces. This may % be used for plotting dipoles for instance. % % Usage: % >> handle = plotsphere(pos, rad, 'key', 'val') % % Inputs: % pos - [x y z] 3-D position of the sphere center % ...
github
ZijingMao/baselineeegtest-master
projtopo.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/projtopo.m
4,459
utf_8
dd1586daff2737f20be375d9f4e19666
% projtopo() - plot projections of one or more ICA components along with % the original data in a 2-d topographic array. Returns % the data plotted. Click on subplot to examine separately. % Usage: % >> [projdata] = projtopo(data,weights,[compnums],'chan_locs',... % ...
github
ZijingMao/baselineeegtest-master
voltype.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/voltype.m
677
utf_8
28455ecff10043767463871fdedc4413
% VOLTYPE determines the type of volume conduction model % % Use as % [type] = voltype(vol) % to get a string describing the type, or % [flag] = voltype(vol, desired) % to get a boolean value. % % See also COMPUTE_LEADFIELD % Copyright (C) 2007, Robert Oostenveld % function [type] = voltype(vol, desired) if isfie...
github
ZijingMao/baselineeegtest-master
strmultiline.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/strmultiline.m
3,151
utf_8
c1a6c98b7691f0623c7938d5cb68ae93
% strmultiline() - format a long string as a multi-line string. % % Usage: % >> strout = strmultiline( strin, maxlen, delimiter); % % Inputs: % strin - one-line or several-line string % maxlen - maximum line length % delimiter - enter 10 here to separate lines with character 10. Default is % ...
github
ZijingMao/baselineeegtest-master
floatread.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/floatread.m
5,572
utf_8
942a49968bcce849dfc9d359ac7d2651
% floatread() - Read matrix from float file ssuming four byte floating point number % Can use fseek() to read an arbitary (continguous) submatrix. % % Usage: >> a = floatread(filename,size,'format',offset) % % Inputs: % filename - name of the file % size - determine the number of float ele...
github
ZijingMao/baselineeegtest-master
writeeeg.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/writeeeg.m
9,957
utf_8
b80ba013a795acbaa4122e842203239c
% writeeeg - Generating CNT/EDF/BDF/GDF-files using BIOSIG toolbox. Note % that the CNT file format is not fully functional. See also the % writecnt.m Matlab function (there is no fully working % Neuroscan writing function to our knowledge). % % writeeeg( filename, data, srate, 'key', ...
github
ZijingMao/baselineeegtest-master
convertlocs.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/convertlocs.m
9,621
utf_8
9455542daae2061f96f576b6dc3d46da
% convertlocs() - Convert electrode locations between coordinate systems % using the EEG.chanlocs structure. % % Usage: >> newchans = convertlocs( EEG, 'command'); % % Input: % chanlocs - An EEGLAB EEG dataset OR a EEG.chanlocs channel locations structure % 'command' - ['cart2topo'|'sph2topo'|'sphb...
github
ZijingMao/baselineeegtest-master
isscript.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/isscript.m
385
utf_8
5e35a8cefee4828cc65eeb2abb2502a7
% function checking if a specific file is a script% function bool = isscript(fileName); fid = fopen(fileName, 'r'); cont = true; while cont && ~feof(fid) l = strtok(fgetl(fid)); if ~isempty(l) && l(1) ~= '%' if strcmpi(l, 'function') bool = false; return; else bool...
github
ZijingMao/baselineeegtest-master
floatwrite.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/floatwrite.m
3,169
utf_8
8472e61c3208f7a445ec052e9cc52b4b
% floatwrite() - Write data matrix to float file. % % Usage: >> floatwrite(data,filename, 'format') % % Inputs: % data - write matrix data to specified file as four-byte floating point numbers. % filename - name of the file % 'format' - The option FORMAT argument specifies the storage format as % ...
github
ZijingMao/baselineeegtest-master
kurt.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/kurt.m
1,697
utf_8
649871ee149fc000974e3081ac13ff98
% kurt() - return kurtosis of input data distribution % % Usage: % >> k=kurt(data) % % Algorithm: % Calculates kurtosis or normalized 4th moment of an input data vector % Given a matrix, returns a row vector giving the kurtosis' of the columns % (Ref: "Numerical Recipes," p. 612) % % Author: Martin Mckeown, CNL...
github
ZijingMao/baselineeegtest-master
jointprob.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/jointprob.m
4,100
utf_8
6f1300fd6123684425efaaa56c1e95c1
% jointprob() - rejection of odd columns of a data array using % joint probability of the values in that column (and % using the probability distribution of all columns). % % Usage: % >> [jp rej] = jointprob( signal ); % >> [jp rej] = jointprob( signal, threshold, jp, normalize, discre...
github
ZijingMao/baselineeegtest-master
readneurodat.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/readneurodat.m
3,182
utf_8
2658232f1fb962a2bad82932ad309164
% readneurodat() - read neuroscan location file (.dat) % % Usage: % >> [ CHANLOCS labels theta theta ] = readneurodat( filename ); % % Inputs: % filename - file name or matlab cell array { names x_coord y_coord } % % Outputs: % CHANLOCS - [structure] EEGLAB channel location data structure. See % ...
github
ZijingMao/baselineeegtest-master
shuffle.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/shuffle.m
1,610
utf_8
aef9a1bc7914b99d6e312694b0522085
% shuffle() - shuffle a given dimension in an array % % Usage: >> Y = shuffle(X) % >> [Y = shuffle(X, DIM) % % Inputs: % X - input array % DIM - dimension index (default is firt non-singleton dimention) % % Outputs: % Y - shuffled array % I - forward indices (Y = X(I) if 1D) % J - reverse indic...
github
ZijingMao/baselineeegtest-master
fastif.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/fastif.m
1,159
utf_8
ac76d723f5de7649f75655cbdb653c1a
% fastif() - fast if function. % % Usage: % >> res = fastif(test, s1, s2); % % Input: % test - logical test with result 0 or 1 % s1 - result if 1 % s2 - result if 0 % % Output: % res - s1 or s2 depending on the value of the test % % Author: Arnaud Delorme, CNL / Salk Institute, 2001 % Copyright (...
github
ZijingMao/baselineeegtest-master
chancenter.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/chancenter.m
3,703
utf_8
27a231ace0a066d6e9ad7c3da227bbb7
% chancenter() - recenter cartesian X,Y,Z channel coordinates % % Usage: >> [x y z newcenter] = chancenter(x,y,z,center); % % Optional inputs: % x,y,z = 3D coordintates of the channels % center = [X Y Z] known center different from [0 0 0] % [] will optimize the center location according %...
github
ZijingMao/baselineeegtest-master
eegplot2trial.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/eegplot2trial.m
3,493
utf_8
070a4620dcbcefa6063fde095d9ae592
% eegplot2trial() - convert EEGPLOT rejections into trial and electrode % rejections compatible with EEGLAB format. % % Usage: % >> [trialrej elecrej] = eegplot2trial( eegplotrej, frames, ... % sweeps, colorin, colorout ); % % Inputs: % eegplotrej - EEGPLOT output (TMPREJ; se...
github
ZijingMao/baselineeegtest-master
reref.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/reref.m
9,588
utf_8
d1a7ce88ac95a65fc25d21b6f9b28713
% reref() - convert common reference EEG data to some other common reference % or to average reference % Usage: % >> Dataout = reref(data); % convert all channels to average reference % >> [Dataout Chanlocs] = reref(data, refchan, 'key', 'val'); % % convert data to new refere...
github
ZijingMao/baselineeegtest-master
plotdata.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/plotdata.m
20,127
utf_8
dc7d1faf9633b845ff3de9c423067fc0
% plotdata() - plot concatenated multichannel data epochs in two-column format % % Usage: >> plotdata(data) % >> plotdata(data,frames) % >> plotdata(data,frames,limits,title,channames,colors,rtitle,ydir) % % Necessary input: % data = data consisting of consecutive epochs of (chans,frames) ...
github
ZijingMao/baselineeegtest-master
snapread.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/snapread.m
5,372
utf_8
acab56fb5681e5c05feaebf418734cad
% snapread() - Read data in Snap-Master Standard Binary Data File Format % Reads Snap-Master header and data matrix (nchans,nframes). % Ref: Users Guide, Snap-Master for Windows (1997) p. 4-19 % Usage: % >> data = snapread(filename); % read .SMA file data % >> [data,params...
github
ZijingMao/baselineeegtest-master
cart2topo.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/cart2topo.m
5,225
utf_8
7ae7263796eecb060729861c9dd9b2fd
% cart2topo() - convert xyz-cartesian channel coordinates % to polar topoplot() coordinates. Input data % are points on a sphere centered at (0,0,0) % or at optional input 'center'. This function % is now DEPRECATED! See Important warning below. % % Usage: >> [t...
github
ZijingMao/baselineeegtest-master
spec.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/spec.m
3,687
utf_8
02cf60598edf850b8ac8f112277a5be7
% spec() - power spectrum. This function replaces psd() function if the signal % processing toolbox is not present. It uses the timef() function. % % Usage: % >> [power freqs] = spec(X); % >> [power freqs] = spec(X, nfft, fs, win, overlap); % % Inputs: % X - data % nfft - zero padding to lengt...
github
ZijingMao/baselineeegtest-master
icavar.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/icavar.m
3,287
utf_8
20340418c38178274dabeb7cfd17572d
% icavar() - project ICA component activations through the ICA weight matrices % to reconstitute the observed data using selected ICA components. % Returns time course of variance on scalp for each component. % % Usage: >> [srcvar] = icavar(data,weights,sphere,compnums); % % Inputs: % data ...
github
ZijingMao/baselineeegtest-master
eegrej.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/eegrej.m
5,344
utf_8
f3038cab2e3055aec9fb325966beb4c3
% eegrej() - reject/excise arbitrary periods from continuous EEG data % (e.g., EEG.data). % % Usage: % >> [outdata newt newevents boundevents] = ... % eegrej( indata, regions, timelength, eventlatencies); % % Inputs: % indata - input data (channels, frames). If indata is a string, % ...
github
ZijingMao/baselineeegtest-master
sbplot.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/sbplot.m
4,612
utf_8
aac99a4963fad7c8aa7f4010998bc965
% sbplot() - create axes in arbitrary subplot grid positions and sizes % % Usage: >> axis_handle = sbplot(v,h,index) % >> axis_handle = sbplot(v,h,[index1 index2]) % >> axis_handle = sbplot(v,h,[index1 index2],axprop,..) % >> axis_handle = sbplot(v,h,[index1 index2],'ax',handle,axprop,..) % %...
github
ZijingMao/baselineeegtest-master
adjustlocs.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/adjustlocs.m
17,345
utf_8
540be08faa1b5d805504242c6d023cbb
% adjustlocs() - read neuroscan polar location file (.asc) % % Usage: % >> chanlocs = adjustlocs( chanlocs ); % >> chanlocs = adjustlocs( chanlocs, 'key1', val1, 'key2', val2, ...); % % Inputs: % chanlocs - EEGLAB channel location data structure. See % help readlocs() % % Optional inputs:...
github
ZijingMao/baselineeegtest-master
sph2topo.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/sph2topo.m
3,339
utf_8
44852faa1bc45208398680f08a50db29
% sph2topo() - Convert from a 3-column headplot file in spherical coordinates % to 3-column topoplot() locs file in polar (not cylindrical) coords. % Used for topoplot() and other 2-D topographic plotting programs. % Assumes a spherical coordinate system in which horizontal angles...
github
ZijingMao/baselineeegtest-master
sobi.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/sobi.m
5,094
utf_8
ce6035ad7a3d7312fee7cf1a37d8e04e
% sobi() - Second Order Blind Identification (SOBI) by joint diagonalization of % correlation matrices. THIS CODE ASSUMES TEMPORALLY CORRELATED SIGNALS, % and uses correlations across times in performing the signal separation. % Thus, estimated time delayed covariance matrices must be nonsi...
github
ZijingMao/baselineeegtest-master
runica_ml.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/runica_ml.m
43,480
utf_8
62bb523264cef06666a2d818dea42918
% runica() - Perform Independent Component Analysis (ICA) decomposition % of input data using the logistic infomax ICA algorithm of % Bell & Sejnowski (1995) with the natural gradient feature % of Amari, Cichocki & Yang, or optionally the extended-ICA % algorithm of Lee, Giro...
github
ZijingMao/baselineeegtest-master
runica_ml2.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/runica_ml2.m
43,331
utf_8
d9f5448e45ce40d04ca05b45c6a092c4
% runica() - Perform Independent Component Analysis (ICA) decomposition % of input data using the logistic infomax ICA algorithm of % Bell & Sejnowski (1995) with the natural gradient feature % of Amari, Cichocki & Yang, or optionally the extended-ICA % algorithm of Lee, Giro...
github
ZijingMao/baselineeegtest-master
writelocs.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/writelocs.m
10,300
utf_8
f0fb3a6c7068e5ae70ee752f60ad6a76
% writelocs() - write a file containing channel location, type and gain information % % Usage: % >> writelocs( chanstruct, filename ); % >> writelocs( chanstruct, filename, 'key', 'val' ); % % Inputs: % chanstruct - EEG.chanlocs data structure returned by readlocs() containing % channe...
github
ZijingMao/baselineeegtest-master
env.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/env.m
3,005
utf_8
40959ed7c77b4d587e2986bebd89b254
% env() - return envelope of rows of a data matrix, or optionally % of the data interpolated to a different sampling rate. % Usage: % >> envdata = env(data); % >> envdata = env(data, timelimits, timearray); % % Inputs: % data - (nchannels,ntimepoints) data array % % Optional Inputs: % timelimits -...
github
ZijingMao/baselineeegtest-master
uiputfile2.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/uiputfile2.m
2,674
utf_8
3b31fa4d223e9408a8660905b763639a
% uiputfile2() - same as uigputfile but remember folder location. % % Usage: >> uiputfile2(...) % % Inputs: Same as uiputfile % % Author: Arnaud Delorme & Hilit Serby, Scott Makeig, SCCN, UCSD, 2004 % Thanks to input from Bas Kortmann % % Copyright (C) Arnaud Delorme & Hilit Serby, Scott Makeig, SCCN, UCSD, 200...
github
ZijingMao/baselineeegtest-master
entropy_rej.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/entropy_rej.m
3,641
utf_8
e83760bd8d661f0883b5b955383fa06b
% entropy_rej() - calculation of entropy of a 1D, 2D or 3D array and % rejection of odd last dimension values of the input data array % using the discrete entropy of the values in that dimension % (and using the probability distribution of all columns). % % Usage: % >> [entropy...
github
ZijingMao/baselineeegtest-master
quantile.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/quantile.m
2,747
utf_8
1b58a5e543b13e76f3f75afd5f5f9219
% quantile() - computes the quantiles of the data sample from a distribution X % % Description: % If F is the cumulative distribution function (CDF) of X, % the p-th-quantile Qp of distribution X is the value for which holds % F(x) < p, for x < Qp, and % F(x) >...
github
ZijingMao/baselineeegtest-master
eventlock.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/eventlock.m
6,609
utf_8
6794a0982011ab97d748d362169961d5
% eventlock() - DEPRECATED: Please use eegalign() instead. % eventlock() - Time lock data epochs to specified event frames or event x-values. % Use to timelock existing data epochs to reaction times or other events % % Usage: % >> [dataout,medval,shiftframes] = eventlock(data,frames,eventframes,medval); ...
github
ZijingMao/baselineeegtest-master
lookupchantemplate.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/lookupchantemplate.m
988
utf_8
16a6821223a3b7f6603677a26afeaecd
% lookupchantemplate - look up channel template. % % Usage: % [ found transform ] = lookupchantemplate( filename, template_struct); % % Inputs: % filename - channel location file name % template_struct - template strcuture as defined in dipfitdefs % % Outputs: % found - [0|1] 1 if a transformation was...
github
ZijingMao/baselineeegtest-master
readbdf.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/readbdf.m
3,261
utf_8
e0daaa58677f9efc8fade44506ade229
% readbdf() - Loads selected Records of an EDF or BDF File (European Data Format % for Biosignals) into MATLAB. This function is outdate % Use the functions sopen() and sread() instead % % This program is deprecated (obsolete). Use the sopen() and sread() % function instead % Version 2.11 %...
github
ZijingMao/baselineeegtest-master
readedf.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/readedf.m
3,021
utf_8
ea5426379ee917d7284a0b83ba1885fe
% readedf() - read eeg data in EDF format. % % Usage: % >> [data,header] = readedf(filename); % % Input: % filename - file name of the eeg data % % Output: % data - eeg data in (channel, timepoint) % header - structured information about the read eeg data % header.length - length of header to jump ...
github
ZijingMao/baselineeegtest-master
loadeeg.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/loadeeg.m
10,210
utf_8
3148017a8fe87eb6fa0f26fb433c1800
% loadeeg() - load a binary data file in Neuroscan .eeg file format. % % Usage: % >> signal = loadeeg(filename); % >> [signal, accept, typeeeg, rt, response, chan_names, pnts, ... % ntrials, srate, xmin, xmax] = loadeeg( filename, chanlist, ... % triallist, typerange, accepttype, rtrange, responsetype); % %...
github
ZijingMao/baselineeegtest-master
textsc.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/textsc.m
1,965
utf_8
8c2c0fcfccd2bafb12b0c76ab0e73b0c
% textsc() - places text in screen coordinates and places % a title at the top of the figure. % % Usage: % H = textsc(X,Y,TXT) places the text string, TXT % at the normalized coordinates X and Y. H is the % handle to the text object. % % H = textsc(TXT,'title') places a title at the top % of the f...
github
ZijingMao/baselineeegtest-master
runica_mlb.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/runica_mlb.m
42,615
utf_8
84b622d9b09d26c3a20c36f5b695f9b6
% runica() - Perform Independent Component Analysis (ICA) decomposition % of input data using the logistic infomax ICA algorithm of % Bell & Sejnowski (1995) with the natural gradient feature % of Amari, Cichocki & Yang, or optionally the extended-ICA % algorithm of Lee, Giro...
github
ZijingMao/baselineeegtest-master
eventalign.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/eventalign.m
1,247
utf_8
aae47eaea14a78b572fa7ac4a27e027d
% eventalign - function called by pop_importevent() to find the best % sampling rate ratio to align 2 arrays of data events. % % Author: Arnaud Delorme, SCCN/INC/UCSD, Dec 2003 % Copyright (C) Arnaud Delorme, CNL / Salk Institute, 9 Feb 2002, arno@salk.edu % % This program is free software; you can redis...
github
ZijingMao/baselineeegtest-master
writecnt.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/writecnt.m
19,451
utf_8
2103534700b0526bc4c1e243609e91d9
% writecnt() - Write a Neuroscan continuous signal file. % % Usage: % >> writecnt(filename, CNT-dataset, varargin) % % Inputs: % filename - name of the file with extension % dataset - name of the CNT-dataset, a structure with the following fields % cntdataset.header % cntdata...
github
ZijingMao/baselineeegtest-master
topo2sph.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/topo2sph.m
3,809
utf_8
e3c2ecaa32b502b60d330735ade6b95d
% topo2sph() - convert a topoplot() style 2-D polar-coordinate % channel locations file to a 3-D spherical-angle % file for use with headplot() % Usage: % >> [c h] = topo2sph('eloc_file','eloc_outfile', method, unshrink); % >> [c h] = topo2sph( topoarray, method, unshrink ); % % Inputs: %...
github
ZijingMao/baselineeegtest-master
spher.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/spher.m
365
utf_8
0308dc258a2489d286651ab9504dbea9
% spher() - return the sphering matrix for given input data % % Usage: % % >> sphere_matrix = spher(data); % % Reference: T. Bell (1996) - - - % % S. Makeig CNL / Salk Institute, La Jolla CA 7-17-97 function sphere = spher(data) if nargin<1 | size(data,1)<1 help spher return end sphere = 2.0*inv(sqrtm(...
github
ZijingMao/baselineeegtest-master
copyaxis.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/copyaxis.m
3,016
utf_8
ab1ad1b3dfa8e1a8ff4adaa6b8902625
% copyaxis() - helper function for axcopy() % % Usage: >> copyaxis(); % >> copyaxis( command ); % % Note: The optional command option (a string that will be evaluated % when the figure is created allows to customize display). % % Author: Tzyy-Ping Jung, SCCN/INC/UCSD, La Jolla, 2000 % % See also: axcopy(...
github
ZijingMao/baselineeegtest-master
eegplot_readkey.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/eegplot_readkey.m
231
utf_8
a65a871257ff3e64f58f29ff2c190071
% eegplot helper function to read key strokes function eegplot_readkey(src,evnt) if strcmp(evnt.Key, 'rightarrow')==1 eegplot('drawp',4); elseif strcmp(evnt.Key, 'leftarrow')==1 eegplot('drawp',1); end
github
ZijingMao/baselineeegtest-master
moveaxes.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/moveaxes.m
2,214
utf_8
91a62b9d7772562c4900a56b35247ae9
% moveaxes() - move, resize, or copy Matlab axes using the mouse % % Usage: >> moveaxes % >> moveaxes(fig) % >> moveaxes off % % Note: clicking the left mouse button selects an axis % dragging the left mouse button resizes a selected axis % dragging the right mouse button copies a selected ax...
github
ZijingMao/baselineeegtest-master
parsetxt.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/parsetxt.m
1,595
utf_8
daf4054768bfdb3e9112cbb24966ca21
% parsetxt() - parse text input into cell array % % Usage: >> cellarray = parsetxt( txt, delims ); % % Inputs: % txt - input text % delims - optional char array of delimiters (default: [' ' ',' 9]); % % Note: commas, and simple quotes are ignored % % Author: Arnaud Delorme, CNL / Salk Institute, 18 April 2002...
github
ZijingMao/baselineeegtest-master
coregister.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/coregister.m
39,258
utf_8
30dc4502a571138ba3dc0f6d300295b3
% coregister() - Co-register measured or template electrode locations with a % a reference channel locations file. For instance if you % want to perform dipole modeling you have to coregister % (align) your channel electrodes with the model (and the % ea...
github
ZijingMao/baselineeegtest-master
transformcoords.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/transformcoords.m
4,303
utf_8
5c18fcc7b4908f6238aee6106d85e43c
% transformcoords() - Select nazion and inion in anatomical MRI images. % % Usage: % mewcoords = transformcoords(coords, rotate, scale, center, reverse); % % Inputs: % coords - array of 3-D coordinates (3 by N or N by 3) % rotate - [pitch roll yaw] rotate in 3-D using pitch (x plane), % roll ...
github
ZijingMao/baselineeegtest-master
rejkurt.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/rejkurt.m
4,127
utf_8
871cc2da42fee9b970ec91508ece96fb
% rejkurt() - calculation of kutosis of a 1D, 2D or 3D array and % rejection of outliers values of the input data array % using the discrete kutosis of the values in that dimension. % % Usage: % >> [kurtosis rej] = rejkurt( signal, threshold, kurtosis, normalize); % % Inputs: % signal...
github
ZijingMao/baselineeegtest-master
readeetraklocs.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/readeetraklocs.m
2,399
utf_8
9e9ab75538baff3f8e51e2d15bcbbfc8
% readeetraklocs() - read 3-D location files saved using the EETrak % digitizing software. % Usage: % >> CHANLOCS = readeetraklocs( filename ); % % Inputs: % filename - [string] file name % % Outputs: % CHANLOCS - EEGLAB channel location data structure. % See hel...
github
ZijingMao/baselineeegtest-master
nan_mean.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/nan_mean.m
1,341
utf_8
e87ae15c116d4211709116e3c5abf693
% nan_mean() - Average, not considering NaN values % % Usage: same as mean() % Author: Arnaud Delorme, CNL / Salk Institute, 16 Oct 2002 % Copyright (C) 2001 Arnaud Delorme, Salk Institute, arno@salk.edu % % This program is free software; you can redistribute it and/or modify % it under the terms of the GNU General P...
github
ZijingMao/baselineeegtest-master
dipoledensity.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/dipoledensity.m
22,135
utf_8
e26078ef7126108f2f7737b5c773de3d
% dipoledensity() - compute and optionally plot a measure of the 3-D spatial % (in)homogeneity of a specified (large) set of 1- or 2-dipole % component models, either as physical dipole density or as % dipole-position entropy across subjects. In either case, % ...
github
ZijingMao/baselineeegtest-master
icaproj.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/icaproj.m
5,346
utf_8
4a90dc72f4d7531154efd0ac71fb422c
% icaproj() - project ICA component activations through the % associated weight matrices to reconstitute the % observed data using only the selected ICA components. % Usage: % >> [icaprojdata] = icaproj(data,weights,compindex,[datameans],chansout); % % Inputs: % data - data matrix (ch...
github
ZijingMao/baselineeegtest-master
epoch.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/epoch.m
7,001
utf_8
340a95a2503450e01dbd7c4c0dcc9951
% epoch() - Extract epochs time locked to specified events from continuous EEG data. % % Usage: % >> epocheddata = epoch( data, events, timelim); % >> [epocheddata, newtime, indices, rerefevent, rereflatencies ] = ... % epoch( data, events, timelim, 'key1', value1, ... ); % % Inputs: % data ...
github
ZijingMao/baselineeegtest-master
headplot.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/headplot.m
34,780
utf_8
df090bdd0b2bc2329ab6ebb70a00813d
% headplot() - plot a spherically-splined EEG field map on a semi-realistic % 3-D head model. Can 3-D rotate the head image using the left % mouse button. % Example: % >> headplot example % show an example spherical 'eloc_angles' file % >> headplot cartesian % show an example cartesian...
github
ZijingMao/baselineeegtest-master
eegfiltfft.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/eegfiltfft.m
4,093
utf_8
7a24c770da0253fdd7c37b4d445adada
% eegfiltfft() - (high|low|band)-pass filter data using inverse fft % (without using the Matlab signal processing toolbox) % Usage: % >> [smoothdata] = eegfiltfft(data,srate,locutoff,hicutoff); % >> [smoothdata] = eegfiltfft(data,srate,locutoff,hicutoff,epochframes,filtorder,revfilt); % % Inputs: % ...
github
ZijingMao/baselineeegtest-master
rejstatepoch.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/rejstatepoch.m
17,342
utf_8
284e9677ee175d6c99cf0d443ddc1676
% rejstatepoch() - reject bad eeg trials based a statistical measure. Can % be applied either to the raw eeg data or the ICA % component activity. This is an interactive function. % % Usage: % >> [ Irej, Irejdetails, n, threshold, thresholdg] = ... % rejstatep...
github
ZijingMao/baselineeegtest-master
binica.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/binica.m
13,069
utf_8
e1bfb70b5edae53d01116b6f9cf42d51
% binica() - Run stand-alone binary version of runica() from the % Matlab command line. Saves time and memory relative % to runica(). If stored in a float file, data are not % read into Matlab, and so may be larger than Matlab % can handle owing to memory limitations. % Usa...
github
ZijingMao/baselineeegtest-master
mattocell.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/mattocell.m
1,311
utf_8
bb1357cab390093724fa7887f66ebef3
% mattocell() - convert matrix to cell array % % Usage: >> C = mattocell( M ); % % Author: Arnaud Delorme, CNL / Salk Institute, Jan 25 2002 % % Note: this function overload the nnet toolbox function mattocell, % but does not have all its capacities. You can delete the current % function if you have the toolbox. % ...
github
ZijingMao/baselineeegtest-master
readegihdr.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/readegihdr.m
3,589
utf_8
009a2ce2b93412350699c09bebfaeb4e
% readegihdr() - read header information from EGI (versions 2,3,4,5,6,7) data file. % % Usage: % >> [head] = readegihdr(fid,forceversion) % % Input: % fid - file identifier of EGI datafile % forceversion - optional integer input to override automatic reading of version number. % % Output: % head - structure con...
github
ZijingMao/baselineeegtest-master
timtopo.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/timtopo.m
15,459
utf_8
a449d814e428e5d230cda9f0adfe661a
% timtopo() - plot all channels of a data epoch on the same axis % and map its scalp map(s) at selected latencies. % Usage: % >> timtopo(data, chan_locs); % >> timtopo(data, chan_locs, 'key', 'val', ...); % Inputs: % data = (channels,frames) single-epoch data matrix % chan_locs = channel loc...
github
ZijingMao/baselineeegtest-master
rmbase.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/rmbase.m
3,813
utf_8
7f8fcb4d54c16b3482b307e2c8133cbb
% rmbase() - subtract basevector channel means from multi-epoch data matrix % % Usage: % >> [dataout] = rmbase(data); % remove whole-data channel means % >> [dataout datamean] = rmbase(data,frames,basevector); % % remove mean of basevector from each channel and epoch % Inputs: % data - da...
github
ZijingMao/baselineeegtest-master
realproba.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/realproba.m
2,315
utf_8
f564644151c35bcc6b310d8e54773abd
% realproba() - compute the effective probability of the value % in the sample. % % Usage: % >> [probaMap, probaDist ] = realproba( data, discret); % % Inputs: % data - the data onto which compute the probability % discret - discretisation factor (default: (size of data)/5) % ...
github
ZijingMao/baselineeegtest-master
eegfilt.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/eegfilt.m
8,031
utf_8
5d305e3ed98f5df8a36f43880470f905
% eegfilt() - (high|low|band)-pass filter data using two-way least-squares % FIR filtering. Optionally uses the window method instead of % least-squares. Multiple data channels and epochs supported. % Requires the MATLAB Signal Processing Toolbox. % Usage: % >> [smoothdata] = ...
github
ZijingMao/baselineeegtest-master
phasecoher.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/phasecoher.m
13,038
utf_8
2b8981e6f824cfb02a87b964d5e114e4
% phasecoher() - Implements inter-trial amp/coherence using Gaussian wavelets. % Returns same data length as input frames. % Plots results when nargin>6. Outputs have flat ends % at data indices [1:halfwin] and [frames-halfwin:frames]. % Usage: % >> [amps,cohers ] = pha...
github
ZijingMao/baselineeegtest-master
plotchans3d.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/plotchans3d.m
3,251
utf_8
8664823c760a1d16ba00362311f2de52
% plotchans3d() - Plots the 3-D configuration from a Polhemus ELP % file. The axes of the Cartesian coordinate system are % plotted. The nose is plotted as a bold red segment. % Usage: % >> plotchans3d( elpfile, zs); % >> plotchans3d( [X,Y,Z], elecnames, zs); % % Inputs:...
github
ZijingMao/baselineeegtest-master
biosig2eeglab.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/biosig2eeglab.m
7,092
utf_8
0040e73db9c98de459467db8a08ed28e
% biosig2eeglab() - convert BIOSIG structue to EEGLAB structure % % Usage: % >> OUTEEG = pop_biosig2eeglab(hdr, data, interval); % % Inputs: % hdr - BIOSIG header % data - BIOSIG data array % % Optional input: % interval - BIOSIG does not remove event which are outside of % the data range when i...
github
ZijingMao/baselineeegtest-master
changeunits.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/changeunits.m
4,318
utf_8
94064327606cc4ebb997d7e5e58d4bfe
% changeunits() - Takes one or more points in one axes and gives its position % in another axes. Useful for drawing lines between % sbplots (see sbplot()). % % Usage: >> newpoint(s) = changeunits(point(s),curaxhandle,newaxhandle) % % Inputs: % point(s) - two-column vector of c...
github
ZijingMao/baselineeegtest-master
ploterp.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/ploterp.m
3,923
utf_8
86b19356589f4063b6895c62ff72609c
% ploterp() - plot a selected multichannel data epoch on a common timebase % % Usage: >> ploterp(data,frames,epoch,[limits],'title',[plotchans]); % % Inputs: % data = EEG/ERP data epoch (chans,frames) % frames = frames per epoch {default: data length} % epoch = epoch to plot {default: 1} % [limits] ...
github
ZijingMao/baselineeegtest-master
forcelocs.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/forcelocs.m
7,010
utf_8
a97dcbb735eedf75d6f3a7e5590deaee
% forcelocs() - rotate location in 3-D so specified electrodes % match specified locations. % CAUTION: Only for use on electrodes in % and remaining in the upper spherical hemisphere, % otherwise it will work improperly. Written primarily for % adju...
github
ZijingMao/baselineeegtest-master
rejtrend.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/rejtrend.m
3,677
utf_8
9196ccbe2b666079d926f2bbbdc7fa83
% rejtrend() - detect linear trends in EEG activity and reject the % epoched trials based on the accuracy of the linear % fit. % Usage: % >> [rej rejE] = rejtrend( signal, winsize, maxslope, minR, step); % % Inputs: % signal - 3 dimensional signal (channels x frames x trials)...
github
ZijingMao/baselineeegtest-master
slider.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/slider.m
5,310
utf_8
da3f7a317a05c2c37254282f6d2b6bac
% slider() - add slider to a figure % % Usage: % >> slider( handler, horiz, vert, horizmag, vertmag); % % Inputs: % handler - figure handler (for the current figure, use gcf) % horiz - [0|1] add a horizontal slider % vert - [0|1] add a horizontal slider % horizmag - magnify the width of the figure be...
github
ZijingMao/baselineeegtest-master
loadcnt.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/loadcnt.m
29,097
utf_8
5e1876613970ecc4b37123e6cf44f648
% loadcnt() - Load a Neuroscan continuous signal file. % % Usage: % >> cnt = loadcnt(file, varargin) % % Inputs: % filename - name of the file with extension % % Optional inputs: % 't1' - start at time t1, default 0. Warning, events latency % might be innacurate (this is an open issue). % ...
github
ZijingMao/baselineeegtest-master
icaact.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/icaact.m
2,583
utf_8
e90b9a3cfaabf4e09cf26a0a692344e4
% icaact() - compute ICA activation waveforms = weights*sphere*(data-meandata) % % Usage: >> [activations] = icaact(data,weights,datamean); % % Inputs: % data = input data (chans,frames) % weights = unmixing matrix (runica() weights*sphere) % datamean = 0 or mean(data') (default 0); % % Note: If da...
github
ZijingMao/baselineeegtest-master
gettempfolder.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/gettempfolder.m
1,470
utf_8
71281778d892c5545193292a61509dd9
% gettempfolder() - return the temporary folder % % Usage: >> folder = gettempfolder; % % Output: a string containing the folder if a temporary folder can be found. % Empty if the folder cannot be found. % % Author: Arnaud Delorme, SCCN, UCSD, 2012 % % Copyright (C) Arnaud Delorme % This program is free softw...
github
ZijingMao/baselineeegtest-master
loadtxt.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/loadtxt.m
6,712
utf_8
6bb912af759266869498c019520fc4c9
% loadtxt() - load ascii text file into numeric or cell arrays % % Usage: % >> array = loadtxt( filename, 'key', 'val' ...); % % Inputs: % filename - name of the input file % % Optional inputs % 'skipline' - number of lines to skip {default:0}. If this number is % negative the program will only sk...
github
ZijingMao/baselineeegtest-master
plotmesh.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/plotmesh.m
3,071
utf_8
410ee4c8c435cc7b221f29efa3696d21
% plotmesh() - plot mesh defined by faces and vertex % % Usage: % plotmesh(faces, vertex); % % Input: % faces - array of N x 3. Each row defines a triangle. The 3 points % in each row are row indices in the matrix below. % vertex - array of M x 3 points, (x = first colum; y=second colum % ...
github
ZijingMao/baselineeegtest-master
mri3dplot.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/mri3dplot.m
18,772
utf_8
710c890eda7ee5b1b19e7efefa357f7c
% mri3dplot() - plot 3-D density image translucently on top of the mean MR % brain image used in dipplot(). Plot brain slices in directions % 'top' (axial), or 'side' (sagittal), or 'rear' (coronal). % Creates a new figure(). Smoothing uses Matlab smooth3() % Usage: % >> ...
github
ZijingMao/baselineeegtest-master
spherror.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/spherror.m
1,249
utf_8
c912e32a9b9351420468261b94d5b5e8
% spherror() - chancenter() sub function to compute minimum distance % of Cartesian coordinates to a sphere % % Author: Scott Makeig, CNL / Salk Institute, 2000 % Copyright (C) Scott Makeig, CNL / Salk Institute, 2000 % % This program is free software; you can redistribute it and/or modify % it under the...
github
ZijingMao/baselineeegtest-master
envtopo.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/envtopo.m
46,366
utf_8
5673dd4fa49e7a6a1570b73be3106e45
% % envtopo() - Plot the envelope of a multichannel data epoch, plus envelopes and % scalp maps of specified or largest-contributing components. If a 3-D % input matrix, operates on the mean of the data epochs. Click on % individual axes to examine them in detail. The black lines ...
github
ZijingMao/baselineeegtest-master
runica.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/runica.m
64,114
utf_8
7b89cfe00edb4acd5ec7b313ee6292ba
% runica() - Perform Independent Component Analysis (ICA) decomposition % of input data using the logistic infomax ICA algorithm of % Bell & Sejnowski (1995) with the natural gradient feature % of Amari, Cichocki & Yang, or optionally the extended-ICA % algorithm of Lee, G...
github
ZijingMao/baselineeegtest-master
jader.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/jader.m
11,455
utf_8
8b74fa9e0345ee0857e1e564b74dd872
% jader() - blind separation of real signals using JADE (v1.5, Dec. 1997). % % Usage: % >> B = jader(X); % >> B = jader(X,m); % % Notes: % 1) If X is an nxT data matrix (n sensors, T samples) then % B=jader(X) is a nxn separating matrix such that S=B*X is an nxT % matrix of estimated source signals. % 2)...
github
ZijingMao/baselineeegtest-master
spectopo.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/spectopo.m
39,269
utf_8
d00f04d05186f8d52eacbe5b0edb6af6
% spectopo() - Plot the mean log spectrum of a set of data epochs at all channels % as a bundle of traces. At specified frequencies, plot the relative % topographic distribution of power. If available, uses pwelch() from % the Matlab signal processing toolbox, else the EEGLAB s...
github
ZijingMao/baselineeegtest-master
loadavg.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/loadavg.m
10,977
utf_8
eab4ed6a06ccdcb41d04203ec4f0b489
% loadavg() - loading eeg average data file from Neuroscan into % matlab. % Usage: % >> [signal, variance, chan_names, ... % pnts, rate, xmin, xmax] = loadavg( filename, version ); % Input: % filename - input Neuroscan .avg file % version - [1 or 2] function version. Default...
github
ZijingMao/baselineeegtest-master
biosig2eeglabevent.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/biosig2eeglabevent.m
2,893
utf_8
e46fed3b39908dcd8fddac5e4c06235e
% biosig2eeglabevent() - convert biosig events to EEGLAB event structure % % Usage: % >> eeglabevent = biosig2eeglabevent( biosigevent, interval ) % % Inputs: % biosigevent - BioSig event structure % interval - Period to extract events for, in frames. % Default [] is all. % % Outputs: ...
github
ZijingMao/baselineeegtest-master
acsobiro.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/acsobiro.m
5,108
utf_8
bf3c7aaebcc622c2fabdabd6f5e763ce
% acsobiro() - A. Chickocki's robust Second-Order Blind Identification (SOBI) % by joint diagonalization of the time-delayed covariance matrices. % NOTE: THIS CODE ASSUMES TEMPORALLY CORRELATED SIGNALS. % Thus, the estimated time-delayed covariance matrices % for a...
github
ZijingMao/baselineeegtest-master
metaplottopo.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/metaplottopo.m
13,145
utf_8
2f89761aa47cc2b3914162e988f6f1cc
% metaplottopo() - plot concatenated multichannel data epochs in a topographic or % rectangular array. Uses a channel location file with the same % format as topoplot(), or else plots data on a rectangular grid. % % Usage: % >> axes = metaplottopo(data, 'key1', 'val1', 'key2', 'val2') % %...
github
ZijingMao/baselineeegtest-master
blockave.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/blockave.m
2,707
utf_8
74345d9d3d97007ec7f3ef4dd137abd4
% blockave() - make block average of concatenated data sets of same size % Each data set is assumed to be of size (chans,frames). % Usage: % >> aveout = blockave(data,frames) % >> aveout = blockave(data,frames,epochs,weights) % Inputs: % data = data matrix of size (chans,fra...
github
ZijingMao/baselineeegtest-master
posact.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/posact.m
2,789
utf_8
485896d0a8c23f3b21a5d76bdb1209fe
% posact() - Make runica() activations all RMS-positive. % Adjust weights and inverse weight matrix accordingly. % % Usage: >> [actout,winvout,weightsout] = posact(data,weights,sphere) % % Inputs: % data = runica() input data % weights = runica() weights % sphere = runica() sphere {...
github
ZijingMao/baselineeegtest-master
eegplot.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/eegplot.m
89,114
utf_8
ea5b855ef8a62ecd144b9b16482c639b
% eegplot() - Scroll (horizontally and/or vertically) through multichannel data. % Allows vertical scrolling through channels and manual marking % and unmarking of data stretches or epochs for rejection. % Usage: % >> eegplot(data, 'key1', value1 ...); % use interface buttons, etc. %...
github
ZijingMao/baselineeegtest-master
uigetfile2.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/uigetfile2.m
2,667
utf_8
a344bcefaca772c110df38301343a003
% uigetfile2() - same as uigetfile but remember folder location. % % Usage: >> uigetfile2(...) % % Inputs: Same as uigetfile % % Author: Arnaud Delorme & Hilit Serby, Scott Makeig, SCCN, UCSD, 2004 % Thanks to input from Bas Kortmann % % Copyright (C) Arnaud Delorme & Hilit Serby, Scott Makeig, SCCN, UCSD, 2004...
github
ZijingMao/baselineeegtest-master
readelp.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/readelp.m
3,428
utf_8
2869dca997f92d27420c23c7cf912e6f
% readelp() - read electrode locations from an .elp (electrode positions) % file as generated, for example, by a Polhemus tracking device % Usage: % >> [eloc, elocnames, X, Y, Z] = readelp(filename); % % Inputs: % filename - name of the .elp file containing cartesian (XYZ) electrode % loca...
github
ZijingMao/baselineeegtest-master
plottopo.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/plottopo.m
30,821
utf_8
eba3d347d7a02858e68b8395d284199f
% plottopo() - plot concatenated multichannel data epochs in a topographic % or % rectangular array. Uses a channel location file with the same % format as topoplot(), or else plots data on a rectangular grid. % If data are all positive, they are assumed to be spectra. % Usage: ...
github
ZijingMao/baselineeegtest-master
plotcurve.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/plotcurve.m
13,176
utf_8
b247086675025ad96d7229832935ff76
% plotcurve() - plot curve(s) with optional significance highlighting. % % Usage: >> plotcurve(times, data, 'key1', 'val1', 'key2', val2' ...); % % Required inputs: % times - [float] vector of time indices % data - [float] data array, size of [n x times]. If n>1 several % curves are plotted (unless 'plot...
github
ZijingMao/baselineeegtest-master
readneurolocs.m
.m
baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/readneurolocs.m
4,352
utf_8
a351981666e50fa3ac943a11a7799b84
% readneurolocs() - read neuroscan polar location file (.asc) % % Usage: % >> CHANLOCS = readneurolocs( filename ); % >> CHANLOCS = readneurolocs( filename, 'key1', val1, ...); % % Inputs: % filename - file name or matlab cell array { names x_coord y_coord } % % Optional inputs: % same as caliblocs() % ...