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 | condstat.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/condstat.m | 11,329 | utf_8 | 836535e93ffa6254c14453b1557107cd | % condstat() - accumulate surrogate data for comparing two data conditions
%
% Usage:
% >> [diffres, accres, res1, res2] = condstat(formula, naccu, alpha, ...
% bootside, condboot, arg1, arg2 ...);
%
% Inputs:
% formula - [string or cell array of strings] formula(s)... |
github | ZijingMao/baselineeegtest-master | movav.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/movav.m | 7,664 | utf_8 | a7743cb15a5f70fdc8db72736287f7ec | % movav() - Perform a moving average of data indexed by xvals.
% Supports use of a moving non-rectangular window.
% Can be used to resample a data matrix to any size
% (see xadv NOTE below) and to regularize sampling of
% irregularly sampled data.
% Usage:
% >> [outdata,outx] ... |
github | ZijingMao/baselineeegtest-master | readtxtfile.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/readtxtfile.m | 1,473 | utf_8 | 884a7c06601ae6728761a5e03fd42521 | % readtxtfile() - Read text file into a Matlab variable
%
% Usage: >> str = readtxtfile( filename );
%
% Input:
% filename - [string] name of the file.
%
% Output:
% str - [string] content of the file.
%
% Author: Arnaud Delorme, SCCN / INC / UCSD, August 2009
% Copyright (C) Arnaud Delorme, August 2009
%
% This p... |
github | ZijingMao/baselineeegtest-master | openbdf.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/sigprocfunc/openbdf.m | 6,712 | utf_8 | 1496f13e75bb80dd10e647e3497b1a52 | % openbdf() - Opens an BDF File (European Data Format for Biosignals) in MATLAB (R)
%
% Usage:
% >> EDF=openedf(FILENAME)
%
% Note: About EDF -> www.biosemi.com/faq/file_format.htm
%
% Author: Alois Schloegl, 5.Nov.1998
%
% See also: readedf()
% Copyright (C) 1997-1998 by Alois Schloegl
% a.schloegl@ieee.org
% Ver ... |
github | ZijingMao/baselineeegtest-master | anova2rm_cell.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/anova2rm_cell.m | 6,774 | utf_8 | 37ad08d0dfb97a5ae59971a6becc90b7 | % anova2rm_cell() - compute F-values in cell array using repeated measure
% ANOVA.
%
% Usage:
% >> [FC FR FI dfc dfr dfi] = anova2rm_cell( data );
%
% Inputs:
% data = data consisting of PAIRED arrays to be compared. The last
% dimension of the data array is used to comput... |
github | ZijingMao/baselineeegtest-master | statcond.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/statcond.m | 24,879 | utf_8 | 8adfae55efd5defaad53dc2a93a6dc25 | % statcond() - compare two or more data conditions statistically using
% standard parametric or nonparametric permutation-based ANOVA
% (1-way or 2-way) or t-test methods. Parametric testing uses
% fcdf() from the Matlab Statistical Toolbox.
% Usage:
% >> [stats, d... |
github | ZijingMao/baselineeegtest-master | surrogdistrib.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/surrogdistrib.m | 5,888 | utf_8 | 18526734957324ab037d603d38a328cf | % surrogdistrib - Build surrogate distribution
%
% surrog = surrogdistrib(data, varargin);
%
% Inputs:
% data - [cell] data arrays for which to compute a surrogate
% distribution.
%
% Optional inputs:
% 'method' - ['bootstrap'|'perm'] use either 'bootstrap' or 'permutation'
% method. Bootstr... |
github | ZijingMao/baselineeegtest-master | stat_surrogate_pvals.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/stat_surrogate_pvals.m | 2,648 | utf_8 | 74534793d4027376c995150218faf240 | function pvals = stat_surrogate_pvals(distribution,observed,tail)
% compute empirical p-vals under the null hypothesis that observed samples
% come from a given surrogate distribution. P-values for Type I error in
% rejecting the null hypothesis are obtained by finding the proportion of
% samples in the distribution th... |
github | ZijingMao/baselineeegtest-master | anova1rm_cell.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/anova1rm_cell.m | 3,731 | utf_8 | 40890df8c96f1a41aca5846c8c9c4883 | % anova1rm_cell() - compute F-values in cell array using repeated measure
% ANOVA.
%
% Usage:
% >> [FC dfc] = anova2rm_cell( data );
%
% Inputs:
% data = data consisting of PAIRED arrays to be compared. The last
% dimension of the data array is used to compute ANOVA.
% Out... |
github | ZijingMao/baselineeegtest-master | teststat.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/teststat.m | 20,505 | utf_8 | 8521a1c623a39fbdaded6534e27d6c3c | % teststat - EEGLAB statistical testing function
%
% Statistics are critical for inference testing in Science. It is thus
% primordial to make sure than all the statistics implemented are
% robust and at least bug free. Statistical function using complex
% formulas are inherently prone to bugs. EEGLAB functions are a... |
github | ZijingMao/baselineeegtest-master | ttest2_cell.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/ttest2_cell.m | 4,634 | utf_8 | cb20a27eff3e4cd6eb3c9ae82e863eed | % ttest2_cell() - compute unpaired t-test. Allow fast computation of
% multiple t-test using matrix manipulation.
%
% Usage:
% >> [F df] = ttest2_cell( { a b } );
% >> [F df] = ttest2_cell(a, b);
% >> [F df] = ttest2_cell(a, b, 'inhomogenous');
%
% Inputs:
% a,b = data consisting of UN... |
github | ZijingMao/baselineeegtest-master | concatdata.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/concatdata.m | 4,076 | utf_8 | f9b1c761e3ea4846ea5891a0ac56a923 | % concatdata - concatenate data stored into a cell array into a single
% array. only concatenate along the last dimension
% Usage:
% [dataarray len dims] = concatata(cellarraydata);
%
% Input:
% cellarraydata - cell array containing data
%
% Output:
% dataarray - single array containing all data
%... |
github | ZijingMao/baselineeegtest-master | ttest_cell.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/ttest_cell.m | 3,107 | utf_8 | a669e2ffb5b0d990717a40eda3db4a2f | % ttest_cell() - compute paired t-test. Allow fast computation of
% multiple t-test using matrix manipulation.
%
% Usage:
% >> [F df] = ttest_cell( { a b } );
% >> [F df] = ttest_cell(a, b);
%
% Inputs:
% a,b = data consisting of PAIRED arrays to be compared. The last
% dime... |
github | ZijingMao/baselineeegtest-master | statcondfieldtrip.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/statcondfieldtrip.m | 15,444 | utf_8 | 344cb60095d88b4626bf46c2475eab94 | % statcondfiledtrip() - same as statcond except that it uses the fieldtrip
% statistical functions. This is useful to perform
% a wider variety of corrections for multiple
% comparisons for instance.
% Usage:
% >> [stats, df, pvals, surrog]... |
github | ZijingMao/baselineeegtest-master | corrcoef_cell.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/corrcoef_cell.m | 3,242 | utf_8 | 0c78b817804b92c20e7a7a7b084134ab | % corrcoef_cell() - compute pairwise correlations using arrays and
% cell array inputs.
%
% Usage:
% >> c = corrcoef_cell( data );
% >> c = corrcoef_cell( data );
%
% Inputs:
% data - [cell array] data consisting of PAIRED arrays to be compared.
% The last dimension of e... |
github | ZijingMao/baselineeegtest-master | stat_surrogate_ci.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/stat_surrogate_ci.m | 3,125 | utf_8 | cd001b0625997e12a9b2e0bd2accbfe5 | % compute empirical p-vals under the null hypothesis that observed samples
% come from a given surrogate distribution. P-values for Type I error in
% rejecting the null hypothesis are obtained by finding the proportion of
% samples in the distribution that
% (a) are larger than the observed sample (one-sided test)
% (b... |
github | ZijingMao/baselineeegtest-master | anova1_cell.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/anova1_cell.m | 4,428 | utf_8 | 60e8465ee6822f93b4e4d4bcad190d42 | % anova1_cell() - compute F-values in cell array using ANOVA.
%
% Usage:
% >> [F df] = anova1_cell( data );
%
% Inputs:
% data = data consisting of PAIRED arrays to be compared. The last
% dimension of the data array is used to compute ANOVA.
% Outputs:
% F - F-value
% df - degree of f... |
github | ZijingMao/baselineeegtest-master | fdr.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/fdr.m | 2,273 | utf_8 | 0339630d5b76067fde504d464d26a9bf | % fdr() - compute false detection rate mask
%
% Usage:
% >> [p_fdr, p_masked] = fdr( pvals, alpha);
%
% Inputs:
% pvals - vector or array of p-values
% alpha - threshold value (non-corrected). If no alpha is given
% each p-value is used as its own alpha and FDR corrected
% array is ret... |
github | ZijingMao/baselineeegtest-master | anova2_cell.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/statistics/anova2_cell.m | 8,530 | utf_8 | 3f58b154b60557add57c3652a63d8b62 | % anova2_cell() - compute F-values in cell array using ANOVA.
%
% Usage:
% >> [FC FR FI dfc dfr dfi] = anova2_cell( data );
%
% Inputs:
% data = data consisting of PAIRED arrays to be compared. The last
% dimension of the data array is used to compute ANOVA.
% Outputs:
% FC - F-value for... |
github | ZijingMao/baselineeegtest-master | pop_expica.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_expica.m | 2,190 | utf_8 | de6256134d052dc2d501f1da80a85a5a | % pop_expica() - export ICA weights or inverse matrix
%
% Usage:
% >> pop_expica( EEG, whichica); % a window pops up
% >> pop_expica( EEG, whichica, filename );
%
% Inputs:
% EEG - EEGLAB dataset
% whichica - ['weights'|'inv'] export ica 'weights' or ica inverse
% matrix (... |
github | ZijingMao/baselineeegtest-master | pop_loadbci.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_loadbci.m | 13,381 | utf_8 | 471e8acb985f699ddd0e2e3b3a723d45 | % pop_loadbci() - import a BCI2000 ascii file into EEGLAB
%
% Usage:
% >> OUTEEG = pop_loadbci( filename, srate );
%
% Inputs:
% filename - file name
% srate - sampling rate
%
% Outputs:
% OUTEEG - EEGLAB data structure
%
% Author: Arnaud Delorme, CNL / Salk Institute, 9 July 2002
%
% See... |
github | ZijingMao/baselineeegtest-master | pop_fileio.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_fileio.m | 7,131 | utf_8 | 9330dd4ef5ede2f403e6e848748bfd57 | % pop_fileio() - import data files into EEGLAB using FileIO
%
% Usage:
% >> OUTEEG = pop_fileio; % pop up window
% >> OUTEEG = pop_fileio( filename );
%
% Inputs:
% filename - [string] file name
%
% Optional inputs:
% 'channels' - [integer array] list of channel indices
% 'samples' - [min max] sample po... |
github | ZijingMao/baselineeegtest-master | pop_compareerps.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_compareerps.m | 2,848 | utf_8 | d0e259f378ec39efae7121f2225f9cbf | % pop_compareerps() - Compare the (ERP) averages of two datasets.
%
% Usage:
% >> pop_compareerps( ALLEEG, datasetlist, chansubset, title);
% Inputs:
% ALLEEG - array of datasets
% datasetlist - list of datasets
% chansubset - vector of channel subset
% title - plot title
%
% Author: Arnaud De... |
github | ZijingMao/baselineeegtest-master | importevent.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/importevent.m | 16,193 | utf_8 | 3c5abc8a8b32a3fe9ba00144fbaed59d | % importevent() - Import experimental events from data file or Matlab
% array into a structure.
%
% Usage: >> eventstruct = importevent( event, oldevent, srate);
% >> eventstruct = importevent( event, oldevent, srate, 'key1', 'value1', ...);
%
% Input:
% event - [ 'filename'|array ] Filenam... |
github | ZijingMao/baselineeegtest-master | pop_saveset.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_saveset.m | 12,652 | utf_8 | f327353b0e7ee940640ebfd448f68f9d | % pop_saveset() - save one or more EEG dataset structures
%
% Usage:
% >> pop_saveset( EEG ); % use an interactive pop-up window
% >> EEG = pop_saveset( EEG, 'key', 'val', ...); % no pop-up
%
% Inputs:
% EEG - EEG dataset structure. May only contain one datase... |
github | ZijingMao/baselineeegtest-master | eeg_pv.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_pv.m | 8,193 | utf_8 | 23a0d260095460fdd46f49f5060dcf52 | % eeg_pv() - Compute EEG.data 'percent variance ' (pv) of the whole EEG data versus the projections
% of specified components.
% Can omit specified components and channels from the computation. Can draw a plot
% of the scalp distribution of pv, or progressively compute the pv ... |
github | ZijingMao/baselineeegtest-master | eeg_epoch2continuous.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_epoch2continuous.m | 1,716 | utf_8 | 79ffa71e29359c2ca1a0f21c2caf95cf | % eeg_epoch2continuous() - convert epoched dataset to continuous dataset
% with data epochs separated by boundary events.
% Usage:
% >> EEGOUT = eeg_epoch2continuous(EEGIN);
%
% Inputs:
% EEGIN - a loaded epoched EEG dataset structure.
%
% Inputs:
% EEGOUT - a continuous EEG data... |
github | ZijingMao/baselineeegtest-master | eeg_interp.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_interp.m | 14,003 | utf_8 | 03c4611ad200bccfeeffd29ef6682a23 | % eeg_interp() - interpolate data channels
%
% Usage: EEGOUT = eeg_interp(EEG, badchans, method);
%
% Inputs:
% EEG - EEGLAB dataset
% badchans - [integer array] indices of channels to interpolate.
% For instance, these channels might be bad.
% [chanlocs structure] channe... |
github | ZijingMao/baselineeegtest-master | pop_editeventvals.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_editeventvals.m | 25,793 | utf_8 | de89caf08acbbceb7572ea96a994e688 | % pop_editeventvals() - Edit events contained in an EEG dataset structure.
% If the dataset is the only input, a window pops up
% allowing the user to insert the relevant parameter values.
%
% Usage: >> EEGOUT = pop_editeventvals( EEG, 'key1', value1, ...
% ... |
github | ZijingMao/baselineeegtest-master | pop_icathresh.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_icathresh.m | 14,758 | utf_8 | 365bfcb08f0dd1c0da09de203c810155 | % pop_icathresh() - main menu for choosing threshold for component
% rejection in EEGLAB.
%
% Usage:
% >> [OUTEEG rej] = pop_icathresh(INEEG, threshval, rejmethod,
% rejvalue, interact);
%
% Inputs:
% INEEG - input dataset
% threshval - values of t... |
github | ZijingMao/baselineeegtest-master | pop_eegthresh.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_eegthresh.m | 9,769 | utf_8 | 6b51b6f2693399b7690272bbcaf1e3fa | % pop_eegthresh() - reject artifacts by detecting outlier values. This has
% long been a standard method for selecting data to reject.
% Applied either for electrode data or component activations.
% Usage:
% >> pop_eegthresh( INEEG, typerej); % pop-up interactive window
% >> [E... |
github | ZijingMao/baselineeegtest-master | pop_timef.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_timef.m | 8,964 | utf_8 | 479d128417dbb0d8ab96a1795c580e3b | % pop_timef() - Returns estimates and plots of event-related (log) spectral
% perturbation (ERSP) and inter-trial coherence (ITC) changes
% timelocked to a set of input events in one data channel.
%
% Usage:
% >> pop_timef(EEG, typeplot); % pop_up window
% >> pop_timef(EEG, typeplot, lastcom);... |
github | ZijingMao/baselineeegtest-master | eeg_chantype.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_chantype.m | 2,353 | utf_8 | cc106eb578fad38a9d0ce04e66c68cc5 | % eeg_chantype() - Returns the channel indices of the desired channel type(s).
%
% Usage:
% >> indices = eeg_chantype(struct, types )
%
% Inputs:
% struct - EEG.chanlocs data structure returned by readlocs() containing
% channel location, type and gain information.
%
% Optional input
% types ... |
github | ZijingMao/baselineeegtest-master | eeg_eegrej.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_eegrej.m | 5,443 | utf_8 | 2eaad3df9a82438942a603294477a83f | % eeg_eegrej() - reject porition of continuous data in an EEGLAB
% dataset
%
% Usage:
% >> EEGOUT = eeg_eegrej( EEGIN, regions );
%
% Inputs:
% INEEG - input dataset
% regions - array of regions to suppress. number x [beg end] of
% regions. 'beg' and 'end' are expressed in... |
github | ZijingMao/baselineeegtest-master | eeg_point2lat.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_point2lat.m | 3,118 | utf_8 | e0dbc1311eceee071f6dcfb1dfcfb9bb | % eeg_point2lat() - convert latency in data points to latency in ms relative
% to the time locking. Used in eeglab().
% Usage:
% >> [newlat ] = eeg_point2lat( lat_array, [], srate);
% >> [newlat ] = eeg_point2lat( lat_array, epoch_array,...
% srate, timelimi... |
github | ZijingMao/baselineeegtest-master | pop_averef.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_averef.m | 2,591 | utf_8 | 13d6362c4bcdd4d0c831e5b62379549f | % pop_averef() - Convert an EEG dataset to average reference.
% This function is obsolete. See pop_reref() instead.
%
% Usage:
% >> EEGOUT = pop_averef( EEG );
%
% Author: Arnaud Delorme, CNL / Salk Institute, 22 March 2002
%
% See also: eeglab(), reref(), averef()
% Copyright (C) 22 March 2002 Ar... |
github | ZijingMao/baselineeegtest-master | eeg_matchchans.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_matchchans.m | 5,088 | utf_8 | 070c5b272529f4f74dc88932ce5baa77 | % eeg_matchchans() - find closest channels in a larger EEGLAB chanlocs structure
% to channels in a smaller chanlocs structure
% Usage:
% >> [selchans,distances,selocs] = eeg_matchchans(BIGlocs,smalllocs,'noplot');
% Inputs:
% BIGlocs - larger (or equal-sized) EEG.chanlocs structur... |
github | ZijingMao/baselineeegtest-master | eeg_insertbound.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_insertbound.m | 7,147 | utf_8 | cdb944c0e4d9182d26465cca98d458a1 | % eeg_insertbound() - insert boundary event in an EEG event structure.
%
% Usage:
% >> [eventout indnew] = eeg_insertbound( eventin, pnts, ...
% abslatency, duration);
% Required Inputs:
% eventin - EEGLAB event structure (EEG.event)
% pnts - data points... |
github | ZijingMao/baselineeegtest-master | pop_reref.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_reref.m | 12,991 | utf_8 | 14d26bdeeaca5ad12a0890e8f01c25df | % pop_reref() - Convert an EEG dataset to average reference or to a
% new common reference channel (or channels). Calls reref().
% Usage:
% >> EEGOUT = pop_reref( EEG ); % pop up interactive window
% >> EEGOUT = pop_reref( EEG, ref, 'key', 'val' ...);
%
% Graphic interface:
% "Compute averag... |
github | ZijingMao/baselineeegtest-master | eeg_dipselect.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_dipselect.m | 2,895 | utf_8 | b9770dbf991cd2bc42e30f80792ce7a4 | % eeg_dipselect() - select componet dipoles from an EEG dataset with
% reisdual variance (rv) less than a selected threshold
% and equivalent dipole location inside the brain volume.
% Usage:
% >> selctedComponents = eeg_dipselect(EEG, rvThreshold, selectionType, depthThreshold)
... |
github | ZijingMao/baselineeegtest-master | pop_loadcnt.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_loadcnt.m | 9,914 | utf_8 | 196225b3e7d78dc84817620c2a7cffab | % pop_loadcnt() - load a neuroscan CNT file (pop out window if no arguments).
%
% Usage:
% >> EEG = pop_loadcnt; % pop-up window mode
% >> EEG = pop_loadcnt( filename, 'key', 'val', ...);
%
% Graphic interface:
% "Data fomat" - [checkbox] 16-bits or 32-bits. We couldn't find in the
% data file w... |
github | ZijingMao/baselineeegtest-master | eeg_amplitudearea.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_amplitudearea.m | 7,019 | utf_8 | 712e8efc8565d2b601dd9ec225a4d36c | % eeg_amplitudearea() - Resamples an ERP average using spline interpolation
% at a new sample rate (resrate) in Hz to get the exact limits
% of the window of integration. Finely samples the window
% and adds together very narrow rectangles capped by
... |
github | ZijingMao/baselineeegtest-master | pop_eegplot.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_eegplot.m | 9,306 | utf_8 | f7fe5ffcd511733cac5bd8dbec00bdb2 | % pop_eegplot() - Visually inspect EEG data using a scrolling display.
% Perform rejection or marking for rejection of visually
% (and/or previously) selected data portions (i.e., stretches
% of continuous data or whole data epochs).
% Usage:
% >> pop_eegplot( EEG ) %... |
github | ZijingMao/baselineeegtest-master | pop_editset.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_editset.m | 29,463 | utf_8 | 1066952edf9caed66b7e3396d8f2f5f7 | % pop_editset() - Edit EEG dataset structure fields.
%
% Usage:
% >> EEGOUT = pop_editset( EEG ); % pops-up a data entry window
% >> EEGOUT = pop_editset( EEG, 'key', val,...); % no pop-up window
%
% Graphic interface:
% "Dataset name" - [Edit box] Name for the new dataset.
% In the right column... |
github | ZijingMao/baselineeegtest-master | pop_snapread.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_snapread.m | 3,759 | utf_8 | 28b076d60861433397b0c0dd49338875 | % pop_snapread() - load an EEG SnapMaster file (pop out window if no arguments).
%
% Usage:
% >> [dat] = pop_snapread( filename, gain);
%
% Graphic interface:
% "Relative gain" - [edit box] to compute the relative gain, fisrt look at
% the text header of the snapmater file with a text editor.
% ... |
github | ZijingMao/baselineeegtest-master | eeg_decodechan.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_decodechan.m | 3,799 | utf_8 | 600c82eb2fe26e4e9b5b1d1af79b383d | % eeg_decodechan() - given an input EEG dataset structure, output a new EEG data structure
% retaining and/or excluding specified time/latency, data point, channel,
% and/or epoch range(s).
% Usage:
% >> [chaninds chanlist] = eeg_decodechan(chanlocs, chanlist);
%
% Inputs:
% chanlocs... |
github | ZijingMao/baselineeegtest-master | eeg_getica.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_getica.m | 1,704 | utf_8 | 00350d1cd6a4ab711db93297dd29454d | % eeg_getica() - get ICA component activation. Recompute if necessary.
%
% >> mergelocs = eeg_getica(EEG, comp);
%
% Inputs:
% EEG - EEGLAB dataset structure
% comp - component index
%
% Output:
% icaact - ICA component activity
%
% Author: Arnaud Delorme, 2006
% Copyright (C) Arnaud Delorme, CER... |
github | ZijingMao/baselineeegtest-master | pop_mergeset.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_mergeset.m | 13,085 | utf_8 | 1f742cb4e4ef9f3cc91e350e36de68cb | % pop_mergeset() - Merge two or more datasets. If only one argument is given,
% a window pops up to ask for more arguments.
% Usage:
% >> OUTEEG = pop_mergeset( ALLEEG ); % use a pop-up window
% >> OUTEEG = pop_mergeset( ALLEEG, indices, keepall);
% >> OUTEEG = pop_mergeset( INEEG1, INEEG2, keepa... |
github | ZijingMao/baselineeegtest-master | pop_importevent.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_importevent.m | 12,593 | utf_8 | 6b64e9391f0dca41020312951341bd55 | % pop_importevent() - Import events into an EEG dataset. If the EEG dataset
% is the only input, a window pops up to ask for the relevant
% parameter values.
%
% Usage: >> EEG = pop_importevent( EEG ); % pop-up window mode
% >> EEG = pop_importevent( EEG, 'key1', 'value1', ...);
%
% Gr... |
github | ZijingMao/baselineeegtest-master | eeg_eventtypes.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_eventtypes.m | 5,504 | utf_8 | d106acb9a7c18278b36620b4a206edb5 | % eeg_eventtypes() - return a list of event or urevent types in a dataset and
% the respective number of events of each type. Ouput event
% types are sorted in reverse order of their number. If no
% outputs, print this list on the commandline instead.
%
% ... |
github | ZijingMao/baselineeegtest-master | pop_signalstat.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_signalstat.m | 5,079 | utf_8 | 5066bdd6d63e075bfeaf649483b7b2bb | % pop_signalstat() - Computes and plots statistical characteristics of a signal,
% including the data histogram, a fitted normal distribution,
% a normal ditribution fitted on trimmed data, a boxplot, and
% the QQ-plot. The estimates value are printed in a panel ... |
github | ZijingMao/baselineeegtest-master | pop_rejchanspec.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_rejchanspec.m | 10,691 | utf_8 | 8549b5c2d8a05e2ca0aa177b4a248efc | % pop_rejchanspec() - reject artifacts channels in an EEG dataset using
% channel spectrum. The average spectrum for all selected
% is computed and a threshold is applied.
%
% Usage:
% >> pop_rejchanspec( INEEG ) % pop-up interative window mode
% >> [OUTEEG, indelec] = pop_rejchan... |
github | ZijingMao/baselineeegtest-master | pop_rejtrend.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_rejtrend.m | 8,506 | utf_8 | 10c0f6234434be6f374f52008cc4407d | % pop_rejtrend() - Measure linear trends in EEG data; reject data epochs
% containing strong trends.
% Usage:
% >> pop_rejtrend( INEEG, typerej); % pop up an interactive window
% >> OUTEEG = pop_rejtrend( INEEG, typerej, elec_comp, ...
% winsize, maxslope, minR, superpose, reject,ca... |
github | ZijingMao/baselineeegtest-master | pop_selectevent.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_selectevent.m | 24,608 | utf_8 | 4cc926ceeed20f4e4d5a975d4c884a9b | % pop_selectevent() - Find events in an EEG dataset. If the dataset
% is the only input, a window pops up to
% ask for the relevant parameter values.
%
% Usage: >> [EEGOUT,event_indices] = pop_selectevent( EEG, 'key1', value1, ...
% ... |
github | ZijingMao/baselineeegtest-master | pop_saveh.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_saveh.m | 2,630 | utf_8 | 946d5b48194c0957d6393b94d4905de1 | % pop_saveh() - save the EEGLAB session command history stored in ALLCOM
% or in the 'history' field of the current dataset
%
% Usage:
% >> pop_saveh( ALLCOM, filename, filepath);
% >> pop_saveh( EEG.history, filename, filepath);
%
% Inputs:
% ALLCOM - cell array of strings containing the EEGLA... |
github | ZijingMao/baselineeegtest-master | pop_resample.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_resample.m | 9,995 | utf_8 | 54415821c3cb9868db7b315fbecdd2f1 | % pop_resample() - resample dataset (pop up window).
%
% Usage:
% >> [OUTEEG] = pop_resample( INEEG ); % pop up interactive window
% >> [OUTEEG] = pop_resample( INEEG, freq);
%
% Graphical interface:
% The edit box entitled "New sampling rate" contains the frequency in
% Hz for resampling the data. Entering a v... |
github | ZijingMao/baselineeegtest-master | eeg_eventformat.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_eventformat.m | 3,014 | utf_8 | d06b550e78556cb151a924c2b32b19f9 | % eeg_eventformat() - Convert the event information of a dataset from struct
% to array or vice versa.
%
% Usage: >> [eventout fields] = eeg_eventformat( event, 'format', fields );
%
% Inputs:
% event - event array or structure
% format - ['struct'|'array'] see below
% fields - [optional] cell ar... |
github | ZijingMao/baselineeegtest-master | pop_newset.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_newset.m | 27,050 | utf_8 | beafde40b79628c3a9ebfcfecb56c54e | % pop_newset() - Edit/save EEG dataset structure information.
%
% Usage:
% >> [ALLEEG EEG CURRENTSET] = pop_newset( ALLEEG, EEG, CURRENTSET,...
% 'key', val,...);
% Inputs and outputs:
% ALLEEG - array of EEG dataset structures
% EEG - current dataset structur... |
github | ZijingMao/baselineeegtest-master | pop_runscript.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_runscript.m | 1,350 | utf_8 | e17c0b67edb0127bc40e128e564bcb2c | % pop_runscript() - Run Matlab script
%
% Usage: >> pop_runscript;
% >> pop_runscript( filename );
%
% Input:
% filename - [string] name of the file.
%
% Author: Arnaud Delorme, SCCN / INC / UCSD, August 2009
% Copyright (C) Arnaud Delorme, August 2009
%
% This program is free software; you can redistribute i... |
github | ZijingMao/baselineeegtest-master | pop_headplot.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_headplot.m | 24,813 | utf_8 | a4984961bcc331f1b97faa890502c59a | % pop_headplot() - plot one or more spherically-splined EEG field maps
% using a semi-realistic 3-D head model. Requires a
% spline file, which is created first if not found.
% This may take some time, but does not need to be
% done again for this ch... |
github | ZijingMao/baselineeegtest-master | pop_loadset.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_loadset.m | 14,435 | utf_8 | 93a26aeae3a4c3fd4bc70166ff7f5328 | % pop_loadset() - load an EEG dataset. If no arguments, pop up an input window.
%
% Usage:
% >> EEGOUT = pop_loadset; % pop up window to input arguments
% >> EEGOUT = pop_loadset( 'key1', 'val1', 'key2', 'val2', ...);
% >> EEGOUT = pop_loadset( filename, filepath); % old calling format
%
% Optional inputs:
% 'f... |
github | ZijingMao/baselineeegtest-master | pop_selectcomps.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_selectcomps.m | 7,460 | utf_8 | 8edde953edd442f1cc480f2a403c8086 | % pop_selectcomps() - Display components with button to vizualize their
% properties and label them for rejection.
% Usage:
% >> OUTEEG = pop_selectcomps( INEEG, compnum );
%
% Inputs:
% INEEG - Input dataset
% compnum - vector of component numbers
%
% Output:
% OUTEEG - Output dataset ... |
github | ZijingMao/baselineeegtest-master | pop_readsegegi.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_readsegegi.m | 3,697 | utf_8 | c101ff1d191f9634bc1ce0aba263842c | % pop_readsegegi() - load a segmented EGI EEG file. Pop up query
% window if no arguments.
% Usage:
% >> EEG = pop_readsegegi; % a window pops up
% >> EEG = pop_readsegegi( filename ); % no pop-up window
%
% Inputs:
% filename - first EGI file name
%
% Outputs:
% EEG ... |
github | ZijingMao/baselineeegtest-master | pop_rmbase.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_rmbase.m | 7,439 | utf_8 | 45f9353a46caf1ebb9c14f4c7932108c | % pop_rmbase() - remove channel baseline means from an epoched or
% continuous EEG dataset. Calls rmbase().
% Usage:
% >> OUTEEG = pop_rmbase( EEG ); % pop up an interactive arg entry window
% >> OUTEEG = pop_rmbase( EEG, timerange, pointrange); % call rmbase()
%
% Graphic interface:
% "Baseline ... |
github | ZijingMao/baselineeegtest-master | pop_fileiodir.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_fileiodir.m | 2,897 | utf_8 | 0b71b35b5266ba0571298a6974edf189 | % pop_fileiodir() - import directory into EEGLAB using FileIO
%
% Usage:
% >> OUTEEG = pop_fileiodir; % pop up window
% >> OUTEEG = pop_fileiodir( folder );
%
% Inputs:
% folder - [string] folder name
%
% Optional inputs:
% 'channels' - [integer array] list of channel indices
% 'samples' - [min max] sam... |
github | ZijingMao/baselineeegtest-master | pop_prop.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_prop.m | 15,968 | utf_8 | cf47b5aef84eae867c3e697e131faab1 | % pop_prop() - plot the properties of a channel or of an independent
% component.
% Usage:
% >> pop_prop( EEG); % pops up a query window
% >> pop_prop( EEG, typecomp); % pops up a query window
% >> pop_prop( EEG, typecomp, chanorcomp, winhandle,spectopo_options);
%
% Inputs:
% EEG ... |
github | ZijingMao/baselineeegtest-master | eeg_getepochevent.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_getepochevent.m | 11,756 | utf_8 | 5ea09aae0a884131df8e8c4e1d238cf3 | % eeg_getepochevent() - Return dataset event field values for all events
% of one or more specified types
% Usage:
% >> epochval = eeg_getepochevent( EEG );
% >> epochval = eeg_getepochevent( EEG, 'key', 'val');
%
% Inputs:
% EEG - Input dataset
%
% Optional inputs:
%... |
github | ZijingMao/baselineeegtest-master | eeg_timeinterp.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_timeinterp.m | 3,370 | utf_8 | 365cfdc876b172e03a77db2833308aee | % eeg_timeinterp() - perform spline interpolation of a portion
% of data based on prior and post activity. See
% eeg_interp() for interpolation of bad channels.
%
% Usage:
% >> OUTEEG = eeg_timeinterp( INEEG, samples, 'key', 'val');
%
% Inputs:
% INEEG - input EEG structu... |
github | ZijingMao/baselineeegtest-master | pop_comments.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_comments.m | 5,327 | utf_8 | e203d4a9ef43004035f13e5afe147831 | % pop_comments() - edit comments
%
% Usage:
% >> newcomments = pop_comments( oldcomments);
% >> newcomments = pop_comments( oldcomments, title, newcomments, concat);
%
% Inputs:
% oldcomments - old comments (string or cell array of strings)
% title - optional window title (string)
% newcomments - new co... |
github | ZijingMao/baselineeegtest-master | eeg_emptyset.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_emptyset.m | 2,505 | utf_8 | a93f07a3989f904c1eade15794aab1f1 | % eeg_emptyset() - Initialize an EEG dataset structure with default values.
%
% Usage:
% >> EEG = eeg_emptyset();
%
% Outputs:
% EEG - empty dataset structure with default values.
%
% Author: Arnaud Delorme, CNL / Salk Institute, 2001
%
% See also: eeglab()
% Copyright (C) 2001 Arnaud Delorme, Salk Institute, a... |
github | ZijingMao/baselineeegtest-master | pop_eventstat.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_eventstat.m | 4,984 | utf_8 | a4b8019a80d3c517ad7407e9b6906815 | % pop_eventstat() - Computes and plots statistical characteristics of an EEG event,
% including the data histogram, a fitted normal distribution,
% a normal ditribution fitted on trimmed data, a boxplot, and
% the QQ-plot. The estimates value are printed in a panel ... |
github | ZijingMao/baselineeegtest-master | getchanlist.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/getchanlist.m | 2,052 | utf_8 | 12fe9861407f310f8b008f835753091b | % getchanlist() - Obtain indices of specified channel types.
%
% Usage:
% >> chanlist = getchanlist(chanlocs, type)
%
% Inputs:
% chanlocs - EEGLAB channel location structure
% type - [string] select channel of specified type
% can enter a cell array to select several channel types
%
%... |
github | ZijingMao/baselineeegtest-master | pop_biosig.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_biosig.m | 11,082 | utf_8 | 7f80b9e3e215ef99bd71c1590b87ccb0 | % pop_biosig() - import data files into EEGLAB using BIOSIG toolbox
%
% Usage:
% >> OUTEEG = pop_biosig; % pop up window
% >> OUTEEG = pop_biosig( filename, channels, type);
%
% Inputs:
% filename - [string] file name
%
% Optional inputs:
% 'channels' - [integer array] list of channel indices
% 'blockrange'... |
github | ZijingMao/baselineeegtest-master | pop_export.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_export.m | 8,253 | utf_8 | d7e2bbf82fd68b8df5f65244d810f123 | % pop_export() - export EEG dataset
%
% Usage:
% >> com = pop_export(EEG); % a window pops up
% >> com = pop_export(EEG, filename, 'key', 'val', ... );
%
% Inputs:
% EEG - eeglab dataset
% filename - file name
%
% Optional inputs:
% 'ica' - ['on'|'off'] export ICA activities (or ER... |
github | ZijingMao/baselineeegtest-master | pop_rejchan.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_rejchan.m | 10,276 | utf_8 | a844de4616006a4306ad0d4e4b770160 | % pop_rejchan() - reject artifacts channels in an EEG dataset using joint
% probability of the recorded electrode.
%
% Usage:
% >> pop_rejchan( INEEG ) % pop-up interative window mode
% >> [EEG, indelec, measure, com] = ...
% = pop_rejchan( INEEG, 'key', 'val');
%
% Inputs:
% INEEG - input... |
github | ZijingMao/baselineeegtest-master | eeg_countepochs.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_countepochs.m | 4,033 | utf_8 | a9c4c080c3befb23347f12d5c4360d4e | % eeg_countepochs() Count how many epochs there are of each type
%
% Usage:
% >> eeg_countepochs(EEG);
%
% Inputs:
% EEG - input dataset
% epochmarker - ['type'|'eventtype'] indicates which part of the
% EEG.epoch structure the different trial types are stored in. Depending
% on what system the ... |
github | ZijingMao/baselineeegtest-master | pop_chanedit.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_chanedit.m | 51,763 | utf_8 | 9c5546ef49ec9730c495a9ae7d6c3596 | % pop_chanedit() - Edit the channel locations structure of an EEGLAB dataset,
% EEG.chanlocs. For structure location and file formats,
% see >> help readlocs
%
% EEG.chanlocs. For structure location and file formats,
% see >> help readlocs
%
% Usag... |
github | ZijingMao/baselineeegtest-master | pop_newcrossf.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_newcrossf.m | 9,208 | utf_8 | e9ec5bedf577d64df52c8c9838dae4e9 | % pop_newcrossf() - Return estimates and plots of event-related spectral coherence
%
% Usage:
% >> pop_newcrossf(EEG, typeproc, num1, num2, tlimits,cycles,
% 'key1',value1,'key2',value2, ... );
% Inputs:
% INEEG - Input EEG dataset
% typeproc - Type of proces... |
github | ZijingMao/baselineeegtest-master | pop_spectopo.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_spectopo.m | 16,618 | utf_8 | d85a54903c88f0466adac25dbdc5c0a2 | % pop_spectopo() - Plot spectra of specified data channels or components.
% Show scalp maps of power at specified frequencies.
% Calls spectopo().
% Usage:
% >> pop_spectopo( EEG, dataflag); % pops-up interactive window
% OR
% >> [spectopo_outputs] = pop_spectopo( EEG, dataflag,... |
github | ZijingMao/baselineeegtest-master | pop_epoch.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_epoch.m | 16,923 | utf_8 | 1fb4d2e74c69a52ed60d55d1621486e5 | % pop_epoch() - Convert a continuous EEG dataset to epoched data by extracting
% data epochs time locked to specified event types or event indices.
% May also sub-epoch an already epoched dataset (if sub-epochs are
% same size or smaller). This pop_function calls epoch().
% U... |
github | ZijingMao/baselineeegtest-master | eeg_eventhist.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_eventhist.m | 4,549 | utf_8 | 075deb48deff9d15410e8cce6a433655 | % eeg_eventhist() - return or plot histogram of event or urevent field values.
% If NO output args, plots the histogram. If the field values
% are not numbers or strings, no histogram is computed.
% Usage:
% >> figure; eeg_eventhist(EEG.event,'field',bins); % plot histogram... |
github | ZijingMao/baselineeegtest-master | eeg_latencyur.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_latencyur.m | 2,912 | utf_8 | d55ca27237bce37a4bf5491ff6639324 | % eeg_latencyur() - transform latency of sample point in the continuous
% data into latencies in the transformed dataset.
%
% Usage:
% >> lat_out = eeg_latencyur( events, lat_in);
%
% Inputs:
% events - event structure. If this structure contain boundary
% events, the length of th... |
github | ZijingMao/baselineeegtest-master | pop_importev2.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_importev2.m | 2,489 | utf_8 | 741843995eba3b57df4e2670647f78ef | % pop_importev2() - merge a neuroscan EV2 file with input dataset
% (pop out window if no arguments).
%
% Usage:
% >> OUTEEG = pop_importev2( INEEG ); % pop-up window mode
% >> OUTEEG = pop_importev2( INEEG, filename);
%
% Inputs:
% INEEG - input EEGLAB data structure
% filename ... |
github | ZijingMao/baselineeegtest-master | pop_biosig16ying.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_biosig16ying.m | 10,593 | utf_8 | 1831d74dfa6b0ab3c1f6991654a256c8 | % pop_biosig() - import data files into EEGLAB using BIOSIG toolbox
%
% Usage:
% >> OUTEEG = pop_biosig; % pop up window
% >> OUTEEG = pop_biosig( filename, channels, type);
%
% Inputs:
% filename - [string] file name
%
% Optional inputs:
% 'channels' - [integer array] list of channel indices
% 'blockrange'... |
github | ZijingMao/baselineeegtest-master | eeg_oldica.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_oldica.m | 4,381 | utf_8 | 22d0c16288409e669fd273afd79ec6f0 | % eeg_oldica() - report, return or add to oldicaweights and oldicasphere
% stored in cell arrays in EEG.etc of an EEGLAB dataset
% Usage:
% >> eeg_oldica(EEG); % report number of stored oldicaweights
% >> [EEG,icaweights, icasphere] = eeg_oldica(EEG,N); % return matrices
% >> EEG... |
github | ZijingMao/baselineeegtest-master | pop_plotdata.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_plotdata.m | 6,983 | utf_8 | a050f0fb99538d1e30279c41241ba0b6 | % pop_plotdata() - Plot average of EEG channels or independent components in
% a rectangular array. Else, (over)plot single trials.
% Usage:
% >> avg = pop_plotdata(EEG, typeplot, indices, trials, title, singletrials, ydir, ylimits);
%
% Inputs:
% EEG - Input dataset
% typeplot - Type d... |
github | ZijingMao/baselineeegtest-master | pop_eegfilt.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_eegfilt.m | 9,360 | utf_8 | f64d8d0b36d5e7e5ac64782c3412bb38 | % pop_eegfilt() - interactively filter EEG dataset data using eegfilt()
%
% Usage:
% >> EEGOUT = pop_eegfilt( EEG, locutoff, hicutoff, filtorder);
%
% Graphical interface:
% "Lower edge ..." - [edit box] Lower edge of the frequency pass band (Hz)
% Same as the 'locutoff' command line input.
% "Hi... |
github | ZijingMao/baselineeegtest-master | pop_subcomp.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_subcomp.m | 6,379 | utf_8 | e7794fc9bf9ce6971db47be696beba06 | % pop_subcomp() - remove specified components from an EEG dataset.
% and subtract their activities from the data. Else,
% remove components already marked for rejection.
% Usage:
% >> OUTEEG = pop_subcomp( INEEG ); % pop-up window mode
% >> OUTEEG = pop_subcomp( INEEG, components, co... |
github | ZijingMao/baselineeegtest-master | eeg_topoplot.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_topoplot.m | 13,363 | utf_8 | f7a6fe417c1429baaee4201b16da5df0 | % eeg_topoplot() - plot scalp map
%
% eeg_topoplot( vals, chanlocs, 'key', 'val');
%
% Input:
% vals - values, one per channel
% chanlocs - channel structure, same size as vals
%
% Optional inputs:
% 'colormap' - colormap. Possible colormaps are 'blueredyellow', ...
% 'yellowredblue', 'bluere... |
github | ZijingMao/baselineeegtest-master | eeg_pvaf.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_pvaf.m | 9,554 | utf_8 | 0e527313c0a1dda9713e3cc25f465861 | % eeg_pvaf() - Compute EEG.data 'percent variance accounted for' (pvaf) by specified components.
% Can omit specified components and channels from the computation. Can draw a plot
% of the scalp distribution of pvaf, or progressively compute the pvaf for comps
% 1:k, where k = 1... |
github | ZijingMao/baselineeegtest-master | pop_copyset.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_copyset.m | 2,501 | utf_8 | 5ff586e542073596297cfaa0cb6d2da0 | % pop_copyset() - Copy the current EEG dataset into another dataset.
%
% Usage:
% >> ALLEEG = pop_copyset(ALLEEG, index1); % pop-up
% >> [ ALLEEG EEG CURRENTSET ] = pop_copyset(ALLEEG, index1, index2 );
%
% Inputs:
% ALLEEG - array of dataset structure
% index1 - input dataset number
% index2 - in... |
github | ZijingMao/baselineeegtest-master | eeg_chaninds.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_chaninds.m | 2,367 | utf_8 | 2def40fab41159484d7bd8502397d5a6 | % std_chaninds() - look up channel indices in a EEG structure
%
% Usage:
% >> inds = std_chaninds(EEG, channames);
% Inputs:
% EEG - EEG structure containing a chanlocs substructure.
% the chanlocs structure may also be used as input.
% channames - [cell] channel names. May also be... |
github | ZijingMao/baselineeegtest-master | pop_readegi.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_readegi.m | 8,591 | utf_8 | 2f7b99d9be1290f1e4f5c78dd01815da | % pop_readegi() - load a EGI EEG file (pop out window if no arguments).
%
% Usage:
% >> EEG = pop_readegi; % a window pops up
% >> EEG = pop_readegi( filename );
% >> EEG = pop_readegi( filename, datachunks, forceversion, fileloc);
%
% Inputs:
% filename - EGI file name
% datachunks - de... |
github | ZijingMao/baselineeegtest-master | pop_erpimage.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_erpimage.m | 34,127 | utf_8 | 7a821956c6e3beaf067346e54d7e5e01 | % pop_erpimage() - draw an ERP-image plot of a given EEG channel or independent
% component. Uses a pop-up window if less than three (or four
% in one condition) input arguments are supplied. Calls erpimage().
% For futher details see >> help erpimage
% Usage:
% >>... |
github | ZijingMao/baselineeegtest-master | eeg_epochformat.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_epochformat.m | 7,674 | utf_8 | b6227100d8d67253534322618e4b81fa | % eeg_epochformat() - Convert the epoch information of a dataset from struct
% to array or vice versa.
%
% Usage: >> [epochsout fields] = eeg_epochformat( epochs, 'format', fields, events );
%
% Input:
% epochs - epoch numerical or cell array or epoch structure
% format - ['struct'|'array'] conv... |
github | ZijingMao/baselineeegtest-master | eeg_urlatency.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_urlatency.m | 2,237 | utf_8 | 7a9b9b21f8b247ddcea52752ae05bc26 | % eeg_urlatency() - find the original (ur) latency of a time point in
% the original continuous data.
%
% Usage:
% >> lat_out = eeg_urlatency( event, lat_in );
%
% Inputs:
% event - event structure. If this structure contain boundary
% events, the length of these events is add... |
github | ZijingMao/baselineeegtest-master | eeg_context.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/eeg_context.m | 27,634 | utf_8 | 8abec48acc7f051c46340c6cbf7f45f4 | % eeg_context() - returns (in output 'delays') a matrix giving, for each event of specified
% ("target") type(s), the latency (in ms) to the Nth preceding and/or following
% urevents (if any) of specified ("neighbor") type(s). Return the target event
% and urevent numbe... |
github | ZijingMao/baselineeegtest-master | pop_biosig16.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_biosig16.m | 10,480 | utf_8 | 0740b905165b210b6e1c587304d14801 | % pop_biosig() - import data files into EEGLAB using BIOSIG toolbox
%
% Usage:
% >> OUTEEG = pop_biosig; % pop up window
% >> OUTEEG = pop_biosig( filename, channels, type);
%
% Inputs:
% filename - [string] file name
%
% Optional inputs:
% 'channels' - [integer array] list of channel indices
% 'blockrange'... |
github | ZijingMao/baselineeegtest-master | pop_chanevent.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_chanevent.m | 14,346 | utf_8 | 6dd2b5a53ddab6deffe78bae70f589b9 | % pop_chanevent() - import event latencies from the rising and/or falling 'edge'
% latencies of a specified event-marker channel in EEG.data
% Usage:
% >> OUTEEG = pop_chanevent( INEEG ); % select parameters via a pop-up window
% >> OUTEEG = pop_chanevent( INEEG, chanindices, 'key', 'val' ... );... |
github | ZijingMao/baselineeegtest-master | pop_rejspec.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/popfunc/pop_rejspec.m | 12,800 | utf_8 | 58cb37f8656d637dfad891aa266b393f | % pop_rejspec() - rejection of artifact in a dataset using
% thresholding of frequencies in the data.
% Usage:
% >> pop_rejspec(INEEG, typerej); % pop-up interactive window mode
% >> [OUTEEG, Indices] = pop_rejspec( INEEG, typerej, 'key', val, ...);
%
% Pop-up window options:
% "Electrode|Compon... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.