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 | convolve.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/convolve.m | 1,721 | utf_8 | 9bced09132932ed26fd7caf0d6d760f7 | % convolve() - convolve two matrices (normalize by the sum of convolved
% elements to compensate for border effects).
%
% Usage:
% >> r = convolve( a, b );
%
% Inputs:
% a - first input vector
% b - second input vector
%
% Outputs:
% r - result of the convolution
%
% Aut... |
github | ZijingMao/baselineeegtest-master | textgui.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/textgui.m | 6,446 | utf_8 | d4e6f305686806a2d18faf7a89d49999 | % textgui() - make sliding vertical window. This window contain text
% with optional function calls at each line.
%
% Usage:
% >> textgui( commandnames, helparray, 'key', 'val' ...);
%
% Inputs:
% commandnames - name of the commands. Either char array or cell
% array of char. All style ... |
github | ZijingMao/baselineeegtest-master | kmeans_st.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/kmeans_st.m | 8,156 | utf_8 | 8dec33b3e9581d7f84c4deb47caa720d | % KMEANS: K-means clustering of n points into k clusters so that the
% within-cluster sum of squares is minimized. Based on Algorithm
% AS136, which seeks a local optimum such that no movement of a
% point from one cluster to another will reduced the within-cluster
% sum of squares. Te... |
github | ZijingMao/baselineeegtest-master | caliper.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/caliper.m | 6,421 | utf_8 | a3602aa087935fa1182c2455a6e8d7ef | % caliper() - Measure a set of spatial components of a given data epoch relative to
% a reference epoch and decomposition.
% Usage:
% >> [amp,window]=caliper(newepoch,refepoch,weights,compnums,filtnums,times,'noplot');
%
% Inputs:
% newepoch = (nchannels,ntimes) new data epoch
% refepoch = a (nch... |
github | ZijingMao/baselineeegtest-master | help2html2.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/help2html2.m | 16,616 | utf_8 | 0b84a93365f77c167a0f2096b04d0f30 | % help2html() - Convert a Matlab m-file help-message header into an .html help file
%
% Usage:
% >> linktext = help2html( filein, fileout, 'key1', val1, 'key2', val2 ...);
%
% Inputs:
% filein - input filename (with .m extension)
% fileout - output filename (if empty, generated automatically)
%
% Opti... |
github | ZijingMao/baselineeegtest-master | getallmenus.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/getallmenus.m | 2,254 | utf_8 | 757fe9c0de1f75dd78ee6012bb2c3ddf | % getallmenus() - get all submenus of a window or a menu and return
% a tree.
%
% Usage:
% >> [tree nb] = getallmenus( handler );
%
% Inputs:
% handler - handler of the window or of a menu
%
% Outputs:
% tree - text output
% nb - number of elements in the tree
%
% Author: Arnau... |
github | ZijingMao/baselineeegtest-master | eeg_regepochs.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/eeg_regepochs.m | 6,723 | utf_8 | 68a8bef2b1f7b22c806d132a4c322cc6 | % eeg_regepochs() - Convert a continuous dataset into consecutive epochs of
% a specified regular length by adding dummy events of type
% and epoch the data around these events. Alternatively
% only insert events for extracting these epochs.
% Ma... |
github | ZijingMao/baselineeegtest-master | eegplotold.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/eegplotold.m | 33,034 | utf_8 | f08480f9c8c3fcde09afda52f574a1f3 | % eegplotold() - display data in a horizontal scrolling fashion
% with (optional) gui controls (version 2.3)
% Usage:
% >> eegplotold(data,srate,spacing,eloc_file,windowlength,title)
% >> eegplotold('noui',data,srate,spacing,eloc_file,startpoint,color)
%
% Inputs:
% data - Input data matr... |
github | ZijingMao/baselineeegtest-master | chanproj.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/chanproj.m | 7,033 | utf_8 | 3944e3a2db15df4da52766d602a832d0 | % chanproj() - make a detailed plot of data returned from plotproj()
% for given channel. Returns the data plotted.
% Usage:
% >> [chandata] = chanproj(projdata,chan);
% >> [chandata] = chanproj(projdata,chan,ncomps,framelist,limits,title,colors);
%
% Inputs:
% projdata = data returned from plotpro... |
github | ZijingMao/baselineeegtest-master | zica.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/zica.m | 3,366 | utf_8 | 0daa4d2de301c49787f0d7e9e070ffb9 | % zica() - Z-transform of ICA activations; useful for studying component SNR
%
% Usage: >> [zact,basesd,maz,mazc,mazf] = zica(activations,frames,baseframes)
%
% Inputs:
% activations - activations matrix produced by runica()
% frames - frames per epoch {0|default -> length(activations)}
% baseframes - vect... |
github | ZijingMao/baselineeegtest-master | rotatematlab.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/rotatematlab.m | 180 | utf_8 | 1d0c90aba89a0dd6de52d0081b4ad3dd | % This function calls the Matlab rotate function
% This prevents the issue with the function in the private folder of Dipfit
function rotatematlab(varargin)
rotate(varargin{:});
|
github | ZijingMao/baselineeegtest-master | del2map.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/del2map.m | 3,940 | utf_8 | 0e518801cfa22cd909a1faa406f9cf7d | % del2map() - compute the discrete laplacian of an EEG distribution.
%
% Usage:
% >> [ laplac ] = del2map( map, filename, draw );
%
% Inputs:
% map - level of activity (size: nbChannel)
% filename - filename (.loc file) countaining the coordinates
% of the electrodes, or array countaining c... |
github | ZijingMao/baselineeegtest-master | readlocsold.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/readlocsold.m | 3,560 | utf_8 | 55da540b1b04dfe07379075941625ac1 | % readlocsold() - Read electrode locations file in style of topoplot() or headplot().
% Output channel information is ordered by channel numbers.
%
% Usage: >> [nums labels th r x y] = readlocsold(locfile);% {default, polar 2-D}
% >> [nums labels th r x y] = readlocsold(locfile,'polar'); % 2-D
%... |
github | ZijingMao/baselineeegtest-master | crossfreq.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/crossfreq.m | 15,218 | utf_8 | a9ff87c9098280c7729af6c878a8fd45 | % crossfreq() - compute cross-frequency coherences. Power of first input
% correlation with phase of second.
%
% Usage:
% >> crossfreq(x,y,srate);
% >> [coh,timesout,freqsout1,freqsout2,cohboot] ...
% = crossfreq(x,y,srate,'key1', 'val1', 'key2', val2' ...);
% Inputs:
% x ... |
github | ZijingMao/baselineeegtest-master | upgma.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/upgma.m | 3,664 | utf_8 | 2bbad43f658a73df320ccccb6256d938 | % UPGMA: Unweighted pair-group hierarchical cluster analysis of a distance
% matrix. Produces plot of dendrogram. To bootstrap cluster support,
% see cluster().
%
% Usage: [topology,support] = upgma(dist,{labels},{doplot},{fontsize})
%
% dist = [n x n] symmetric distance matrix.
% ... |
github | ZijingMao/baselineeegtest-master | mapcorr.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/mapcorr.m | 6,842 | utf_8 | 4dc2783fce24c7d3b647bb2d2cac4436 | % mapcorr() - Find matching rows in two matrices and their corrs.
% Uses the Hungarian (default), VAM, or maxcorr assignment methods.
% (Follow with matperm() to permute and sign x -> y).
%
% Finds correlation of maximum common subset of channels (using
% channel location... |
github | ZijingMao/baselineeegtest-master | uniqe_cell_string.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/uniqe_cell_string.m | 637 | utf_8 | 4db73f96310fef763282d550920e9d65 | function uniqueStrings = uniqe_cell_string(c)
% uniqe string from a cell-array containing only strings, ignores all
% non-strings.
nonStringCells = [];
for i=1:length(c) % remove non-string cells
if ~strcmp(class(c{i}),'char')
nonStringCells = [nonStringCells i];
end;
end;
c(nonStringCells) = [];
uniq... |
github | ZijingMao/baselineeegtest-master | make_timewarp.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/make_timewarp.m | 9,686 | utf_8 | 248333ed7e02db8061c3f52067e368ff | % make_timewarp() - Select a subset of epochs containing a given event sequence, and return
% a matrix of latencies for time warping the selected epochs to a common
% timebase in newtimef(). Events in the given sequence may be further
% restricted to those with s... |
github | ZijingMao/baselineeegtest-master | fieldtrip2eeglab.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/fieldtrip2eeglab.m | 1,269 | utf_8 | 442a73a6c0d6090b20bc0444bad3aba7 | % load data file ('dataf') preprocessed with fieldtrip
% and show in eeglab viewer
%
% This function is provided as is. It only works for some specific type of
% data. This is a simple function to help the developer and by no mean
% an all purpose function.
function [EEG] = fieldtrip2eeglab(dataf)
[ALLEEG EEG CURRENT... |
github | ZijingMao/baselineeegtest-master | rmart.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/rmart.m | 6,530 | utf_8 | f8a4b6645ed700ac44e8b0933750ef36 | % rmart() - Remove eye artifacts from EEG data using regression with
% multiple time lags. Each channel is first made mean-zero.
% After JL Kenemans et al., Psychophysiology 28:114-21, 1991.
%
% Usage: >> rmart('datafile','outfile',nchans,chanlist,eogchan,[threshold])
% Example: >> rmart('noisy.... |
github | ZijingMao/baselineeegtest-master | vectdata.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/vectdata.m | 4,693 | utf_8 | e2d5960f3405659d0cdcb6645ef43835 | % vectdata() - vector data interpolation with optional moving
% average.
%
% Usage:
% >> [interparray timesout] = vectdata( array, timesin, 'key', 'val', ... );
%
% Inputs:
% array - 1-D or 2-D float array. If 2-D, the second dimension
% only is interpolated.
% timesin - [floa... |
github | ZijingMao/baselineeegtest-master | matperm.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/matperm.m | 2,919 | utf_8 | 697c96bef1109a7011a0d4781bfbedc3 | % matperm() - transpose and sign rows of x to match y (run after matcorr() )
%
% Usage: >> [permx indperm] = matperm(x,y,indx,indy,corr);
%
% Inputs:
% x = first input matrix
% y = matrix with same number of columns as x
% indx = column containing row indices for x (from matcorr())
% indy = column co... |
github | ZijingMao/baselineeegtest-master | varimax.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/varimax.m | 4,437 | utf_8 | d87cb189d37524e4920c2f9ad9c41aa4 | % varimax() - Perform orthogonal Varimax rotation on rows of a data
% matrix.
%
% Usage: >> V = varimax(data);
% >> [V,rotdata] = varimax(data,tol);
% >> [V,rotdata] = varimax(data,tol,'noreorder')
%
% Inputs:
% data - data matrix
% tol - set the termination tolerance to ... |
github | ZijingMao/baselineeegtest-master | pcsquash.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/pcsquash.m | 2,802 | utf_8 | 9e0a0372b72b09c731ef70785b8ce862 | % pcsquash() - compress data using Principal Component Analysis (PCA)
% into a principal component subspace. To project back
% into the original channel space, use pcexpand()
%
% Usage:
% >> [eigenvectors,eigenvalues] = pcsquash(data,ncomps);
% >> [eigenvectors,eigenvalues,com... |
github | ZijingMao/baselineeegtest-master | nan_std.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/nan_std.m | 1,304 | utf_8 | d53859297282cc1d957ec0f2cc0b3617 | % nan_std() - std, not considering NaN values
%
% Usage: std across the first dimension
% Author: Arnaud Delorme, CNL / Salk Institute, Sept 2003
% Copyright (C) 2003 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 ... |
github | ZijingMao/baselineeegtest-master | plotproj.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/plotproj.m | 5,772 | utf_8 | a22a956e9c31d1ee84c4bbb5a663cd53 | % plotproj() - plot projections of one or more ICA components along with
% the original data (returns the data plotted)
%
% Usage:
% >> [projdata] = plotproj(data,weights,compnums);
% >> [projdata] = plotproj(data,weights,compnums, ...
% title,limits,chanlist,channames,... |
github | ZijingMao/baselineeegtest-master | numdim.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/numdim.m | 2,007 | utf_8 | 220904d43bdb749aef158ee0bdef4040 | % numdim() - estimate a lower bound on the (minimum) number of discrete sources
% in the data via their second-order statistics.
% Usage:
% >> num = numdim( data );
%
% Inputs:
% data - 2-D data (nchannel x npoints)
%
% Outputs:
% num - number of sources (estimated from second order measures)
%
%... |
github | ZijingMao/baselineeegtest-master | eeg_ms2f.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/eeg_ms2f.m | 623 | utf_8 | bf8ab362a73704ef273b03319ce179c0 | % eeg_ms2f() - convert epoch latency in ms to nearest epoch frame number
%
% Usage:
% >> outf = eeg_ms2f(EEG,ms);
% Inputs:
% EEG - EEGLAB data set structure
% ms - epoch latency in milliseconds
% Output:
% outf - nearest epoch frame to the specified epoch latency
%
% Author: Scott Make... |
github | ZijingMao/baselineeegtest-master | compsort.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/compsort.m | 8,288 | utf_8 | 43da793b46f111b7671ea6db2e79e699 | % compsort() - reorder ICA components, first largest to smallest by the size
% of their maximum variance in the single-component projections,
% then (if specified) the nlargest component projections are
% reordered by the (within-epoch) time point at which they reach
% ... |
github | ZijingMao/baselineeegtest-master | compheads.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/compheads.m | 6,160 | utf_8 | 96edaf4aa50c50ccb4f752823d03b1d4 | % compheads() - plot multiple topoplot() maps of ICA component topographies
%
% Usage:
% >> compheads(winv,'spline_file',compnos,'title',rowscols,labels,view)
%
% Inputs:
% winv - Inverse weight matrix = EEG scalp maps. Each column is a
% map; the rows correspond to the electrode positions
... |
github | ZijingMao/baselineeegtest-master | logspec.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/logspec.m | 4,318 | utf_8 | 233385ae8dbccb9910ad8e624d8d7244 | % logspec() - plot mean log power spectra of submitted data on loglog scale
% using plotdata() or plottopo() formats
%
% Usage:
% >> [spectra,freqs] = logspec(data,frames,srate);
% >> [spectra,freqs] = logspec(data,frames,srate,'title',...
% [loHz-hiHz],'cha... |
github | ZijingMao/baselineeegtest-master | tftopo.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/tftopo.m | 25,337 | utf_8 | 4bf52bc66340b8d734d55dbc8d8fccee | % tftopo() - Generate a figure showing a selected or representative image (e.g.,
% an ERSP, ITC or ERP-image) from a supplied set of images, one for each
% scalp channel. Then, plot topoplot() scalp maps of value distributions
% at specified (time, frequency) image points. Else, ... |
github | ZijingMao/baselineeegtest-master | compplot.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/compplot.m | 5,162 | utf_8 | 07cf31546d5dbdf48bfb29cba43e9408 | % compplot() - plot a data epoch and maps its scalp topography at a given time
%
% Usage: To plot the projection of an ICA component onto the scalp
% >> projdata = icaproj(data,weights,compindex);
%
% then >> compplot(projdata);
%
% else to plot an EEG epoch with a topoplot at one selected time point
% ... |
github | ZijingMao/baselineeegtest-master | gradmap.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/gradmap.m | 3,370 | utf_8 | 98c074ff6b72e6334c66c7e0ee2d3a31 | % gradmap() - compute the gradient of an EEG spatial distribution.
%
% Usage:
% >> [gradX, gradY ] = gradmap( map, filename, draw )
%
% Inputs:
% map - level of activity (size: nbelectrodes x nbChannel)
% filename - filename (.loc file) countaining the coordinates
% of the electrodes, or arr... |
github | ZijingMao/baselineeegtest-master | fillcurves.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/fillcurves.m | 3,697 | utf_8 | 45bdc3bae6abe81f3eb865ff508ed4aa | % fillcurves() - fill the space between 2 curves
%
% Usage:
% h=fillcurves( Y1, Y2);
% h=fillcurves( X, Y1, Y2, color, transparent[0 to 1]);
%
% Example:
% a = rand(1, 50);
% b = rand(1, 50)+2; b(10) = NaN;
% figure; fillcurves([51:100], a, b);
%
% Author: A. Delorme, SCCN, INC, UCSD/CERCO, CNRS
% Copyright ... |
github | ZijingMao/baselineeegtest-master | timefrq.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/timefrq.m | 13,419 | utf_8 | ad65c647dd826b2a55590fc457103cb5 | % timefrq() - progressive Power Spectral Density estimates on a single
% EEG channel using out-of-bounds and muscle activity rejection
% tests. Uses Matlab FFT-based psd().
% Usage:
% >> [Power,frqs,times,rejections] = timefrq(data,srate,subwindow);
% >> [Power,frqs,times,rejections] = ..... |
github | ZijingMao/baselineeegtest-master | imagescloglog.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/imagescloglog.m | 4,970 | utf_8 | 88feced6e3b718c968cee7ee9cce24f6 | % imagescloglog() - make an imagesc(0) plot with log y-axis and
% x-axis values
%
% Usage: >> imagescloglog(times,freqs,data);
% Usage: >> imagescloglog(times,freqs,data,clim,xticks,yticks,'key','val',...);
%
% Inputs:
% times = vector of x-axis values (LOG spaced)
% freqs = vector of y-axis val... |
github | ZijingMao/baselineeegtest-master | envproj.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/envproj.m | 12,184 | utf_8 | 39c255194bd438d2939c0ab3b8c748d1 | % envproj() - plot envelopes of projections of selected ICA component
% projections against envelope of the original data
%
% Usage: >> [envdata] = envproj(data,weights,compnums);
% >> [envdata] = envproj(data,weights,compnums, ...
% title,limits,chanlist,compn... |
github | ZijingMao/baselineeegtest-master | difftopo.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/difftopo.m | 2,957 | utf_8 | 65dc45bf74bc5bcc5cc398b529f2d026 | % difftopo - compute and plot component decomposition for the difference ERP
% between two EEG datasets. Plots into the current axis (gca);
% plot into a new empty figure as below.
% Usage:
% >> figure; difftopo(ALLEEG,eeg1,eeg2,interval);
% Inputs:
% ALLEEG - array of leaded EE... |
github | ZijingMao/baselineeegtest-master | testica.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/testica.m | 8,781 | utf_8 | d0cf00d8dae57fbf21e94fd22542c1bf | % testica() - Test the runica() function's ability to separate synthetic sources.
% Use the input variables to estimate the (best) decomposition accuracy
% for a given data set size.
% Usage:
% >> testica(channels,frames); % No return variable -> plot results
% >> [testresult] = ... |
github | ZijingMao/baselineeegtest-master | promax.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/promax.m | 4,345 | utf_8 | 82f2ef61454eb31fd54b2edd42f8cc47 | % promax() - perform Promax oblique rotation after orthogonal Varimax
% rotation of the rows of the input data. A method for
% linear decomposition by "rotating to simple structure."
% Usage:
% >> [R] = promax(data,ncomps);
% >> [R,V] = promax(data,ncomps,maxit);
%
% Inputs:
% ... |
github | ZijingMao/baselineeegtest-master | eegplotsold.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/eegplotsold.m | 7,020 | utf_8 | 391a73c20463597978977b106bb495f5 | % eegplotsold() - display data in a clinical format without scrolling
%
% Usage:
% >> eegplotsold(data, srate, 'chanfile', 'title', ...
% yscaling, epoch, linecolor,xstart,vertmark)
%
% Inputs:
% data - data matrix (chans,frames)
% srate - EEG sampling rate in Hz (0 -> 256 Hz)... |
github | ZijingMao/baselineeegtest-master | show_events.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/show_events.m | 7,188 | utf_8 | d36cd636e2fbb7e2a1aeab8faef8155d | % show_events() - Display events in epochs. Events selected by
% make_timewarp() function can be optionally highlighted.
% Each epoch is visualized as a row in the output image with
% events marked by colored rectangles.
%
% Usage:
% >> im = show_events(EEG, 'key1'... |
github | ZijingMao/baselineeegtest-master | crossfold.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/crossfold.m | 19,968 | utf_8 | 33b019ccc97af482fda0f0b153baab64 | % crossf() - Returns estimates and plot of event-related coherence (ERC) changes
% between data from two input channels. The lower panel gives the
% coherent phase difference between the processes. In this panel, for Ex.
% -90 degrees (blue) means xdata leads ydata by a quarter cycle... |
github | ZijingMao/baselineeegtest-master | fastregress.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/fastregress.m | 1,517 | utf_8 | e2c1ad4eeb288b3c052addc163562af2 | % fastregress - perform fast regression and return p-value
%
% Usage:
% [ypred, alpha, rsq, B] = myregress(x, y, plotflag);
%
% Inputs
% y - y values
% x - x values
% plotflag - [0|1] plot regression
%
% Outputs
% ypred - y prediction
% alpha - significance level
% R^2 - r square
% slope - slope of the fit
%
%... |
github | ZijingMao/baselineeegtest-master | rmsave.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/rmsave.m | 723 | utf_8 | a701a295277a4b69da6facca32c0fc41 | % rmsave() - return the RMS in each channel, epoch
%
% Usage:
% >> ave = rmsave(data,frames);
% Scott Makeig, CNL/Salk Institute, La Jolla, 9/98
function ave = rmsave(data,frames)
if nargin<1
help rmsave
return
end
if nargin<2
frames = size(data,2);
data = reshape(data, size(data,1), size(data,2)*size... |
github | ZijingMao/baselineeegtest-master | read_rdf.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/read_rdf.m | 1,904 | utf_8 | e9f06b48010db91ad052b73482eb6e32 | % read_rdf() - read RDF-formatted EEG files.
%
% Usage:
% >> [eeg,ev,header] = read_rdf(filename);
%
% Inputs:
% filename - EEG data file in RDF format
%
% Outputs:
% eeg - eeg data (array in size of [chan_no timepoint];
% ev - event structure
% ev.sample_offset[] - event offsets in samples
% ... |
github | ZijingMao/baselineeegtest-master | hist2.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/hist2.m | 2,077 | utf_8 | e482d20c2cf737a382391c4f4063eed7 | % hist2() - draw superimposed histograms
%
% Usage:
% >> hist2(data1, data2, bins);
%
% Inputs:
% data1 - data to plot first process
% data2 - data to plot second process
%
% Optional inputs:
% bins - vector of bin center
%
% Author: Arnaud Delorme (SCCN, UCSD)
% Copyright (C) 2003 Arnaud Delorme, Salk ... |
github | ZijingMao/baselineeegtest-master | erpregoutfunc.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/erpregoutfunc.m | 1,315 | utf_8 | 028d72b1a69b5f79ce7f9c6a5f00b554 | % erpregoutfunc() - sub function of erpregout() used to regress
% out the ERP from the data
%
% Usage:
% totdiff = erpregout(fact, data, erp);
%
% Inputs:
% fact - factor
% data - [float] 1-D data (time points).
% erp - [float] 1-D data (time points).
%
% Outputs:
% totdif - res... |
github | ZijingMao/baselineeegtest-master | dprime.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/dprime.m | 22,037 | utf_8 | 4af65f989db5375361e682677d16b31f | % DPRIME - Signal-detection theory sensitivity measure.
%
% d = dprime(pHit,pFA)
% [d,beta] = dprime(pHit,pFA)
%
% PHIT and PFA are numerical arrays of the same shape.
% PHIT is the proportion of "Hits": P(Yes|Signal)
% PFA is the proportion of "False Alarms": P(Yes|Noise)
% All numbers involved must be b... |
github | ZijingMao/baselineeegtest-master | setfont.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/setfont.m | 3,688 | utf_8 | 8ce4efce63ece1dbc7e024a86dd41a60 | % setfont() - Change all the fonts properties of a figure.
%
% Usage:
% >> newdata = setfont( handle, 'key', 'val');
% >> [newdata chlab] = setfont( handle, 'key' , 'val', ... );
% >> [newdata chlab] = setfont( handle, 'handletype', handletypevalue, 'key' , 'val', ... );
%
% Inputs:
% handle - [gcf,gca... |
github | ZijingMao/baselineeegtest-master | makeelec.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/makeelec.m | 4,102 | utf_8 | 9b8707861db861dad7e9c657c46b011c | % makeelec() - subroutine to make electrode file in eegplot()
%
% Usage: >> makeelec(chans)
% >> [channames] = makeelec(chans)
%
% Inputs:
% chans - number of channels
%
% Author: Colin Humprhies, CNL / Salk Institute, 1996
%
% See also: eegplot()
% Copyright (C) Colin Humphries, CNL / Salk Institute, A... |
github | ZijingMao/baselineeegtest-master | gradplot.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/miscfunc/gradplot.m | 5,524 | utf_8 | 06af207aeee2691a8ac50369845dfc65 | % gradplot() - Compute the gradient of EEG scalp map(s) on a square grid
%
% Usage:
% >> [gradX, gradY] = gradplot(maps,eloc_file,draw)
% Inputs:
% maps - Activity levels, size (nelectrodes,nmaps)
% eloc_file - Electrode location filename (.loc file) containing electrode
% - coordinat... |
github | ZijingMao/baselineeegtest-master | std_comppol.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_comppol.m | 2,105 | utf_8 | 90c72a999241b33865a1419e64117e0f | % std_comppol() - inverse component polarity in a component cluster
%
% Usage: [compout pol] = std_comppol(compin);
%
% Inputs:
% compin - component scalp maps, one per column.
%
% Outputs:
% compout - component scalp maps some of them with inverted
% polarities, one per column.
% pol - logic... |
github | ZijingMao/baselineeegtest-master | std_readdata.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_readdata.m | 32,955 | utf_8 | dec4496e7d4fbed868b76072fa81e3fe | % std_readdata() - LEGACY FUNCTION, SHOULD NOT BE USED ANYMORE. INSTEAD
% USE std_readerp, std_readspec, ...
% load one or more requested measures
% ['erp'|'spec'|'ersp'|'itc'|'dipole'|'map']
% for all components of a specified cluster.
% ... |
github | ZijingMao/baselineeegtest-master | std_readerp.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_readerp.m | 17,686 | utf_8 | 85e306c03b4a0894eb5e88a8db54b7a5 | % std_readerp() - load ERP measures for data channels or
% for all components of a specified cluster.
% Called by plotting functions
% std_envtopo(), std_erpplot(), std_erspplot(), ...
% Usage:
% >> [STUDY, datavals, times, setinds, cinds] = ...
% ... |
github | ZijingMao/baselineeegtest-master | std_rmalldatafields.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_rmalldatafields.m | 2,441 | utf_8 | b3f42cacc34383569006753be9c6d82b | % std_rmalldatafields - remove all data fields from STUDY (before saving
% it for instance.
%
% Usage:
% STUDY = std_rmalldatafields(STUDY, type);
%
% Input:
% STUDY - EEGLAB study structure
%
% Optional input:
% type - ['chan'|'clust'|'both'] remove from changrp channel loc... |
github | ZijingMao/baselineeegtest-master | std_rejectoutliers.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_rejectoutliers.m | 5,458 | utf_8 | 5295d178e50afb94a6b71303a3d9aaa9 | % std_rejectoutliers() - Commandline function, to reject outlier component(s) from clusters.
% Reassign the outlier component(s) to an outlier cluster specific to each cluster.
% Usage:
% >> [STUDY] = std_rejectoutliers(STUDY, ALLEEG, clusters, th);
% Inputs:
% S... |
github | ZijingMao/baselineeegtest-master | std_makedesign.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_makedesign.m | 21,528 | utf_8 | 105961a70608d75435cf094b1ca8c1a3 | % std_makedesign() - create a new or edit an existing STUDY.design by
% selecting specific factors to include in subsequent
% 1x2 or 2x2 STUDY measures and statistical computations
% for this design. A STUDY may have many factors
% (task or... |
github | ZijingMao/baselineeegtest-master | std_readspec.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_readspec.m | 3,551 | utf_8 | 0315bf04416f115f6af90007ab60704e | % std_readspec() - load spectrum measures for data channels or
% for all components of a specified cluster.
% Called by plotting functions
% std_envtopo(), std_erpplot(), std_erspplot(), ...
% Usage:
% >> [STUDY, specdata, allfreqs, setinds, cinds] = ...
% ... |
github | ZijingMao/baselineeegtest-master | pop_erpparams.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/pop_erpparams.m | 9,909 | utf_8 | e31b70a349e7ce0295ce8ead41d98d8e | % pop_erpparams() - Set plotting and statistics parameters for cluster ERP
% plotting
% Usage:
% >> STUDY = pop_erpparams(STUDY, 'key', 'val');
%
% Inputs:
% STUDY - EEGLAB STUDY set
%
% Input:
% 'topotime' - [real] Plot ERP scalp maps at one specific latency (ms).
% ... |
github | ZijingMao/baselineeegtest-master | std_selectdesign.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_selectdesign.m | 1,989 | utf_8 | b3048a1a88ea00503584ee7c9c6d418b | % std_selectdesign() - select an existing STUDY design.
% Use std_makedesign() to add a new STUDY.design.
%
% Usage:
% >> [STUDY] = std_selectdesign(STUDY, ALLEEG, designind);
%
% Inputs:
% STUDY - EEGLAB STUDY structure
% STUDY - EEGLAB ALLEEG structure
% designind - desired (exis... |
github | ZijingMao/baselineeegtest-master | std_getdataset.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_getdataset.m | 7,391 | utf_8 | 30fe56beb0eae5a9d470402fc8ae35a2 | % std_getdataset() - Constructs and returns EEG dataset from STUDY design.
%
% Usage:
% >> EEG = std_getdataset(STUDY, ALLEEG, 'key', 'val', ...);
%
% Inputs:
% STUDY - EEGLAB STUDY set
% ALLEEG - vector of the EEG datasets included in the STUDY structure
%
% Optional inputs:
% 'design' - [n... |
github | ZijingMao/baselineeegtest-master | std_readpac.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_readpac.m | 9,664 | utf_8 | 969615c6dc80b8442761d8a892ebdef1 | % std_readpac() - read phase-amplitude correlation
%
% Usage:
% >> [STUDY, clustinfo] = std_readpac(STUDY, ALLEEG);
% >> [STUDY, clustinfo] = std_readpac(STUDY, ALLEEG, ...
% 'key', 'val');
% Inputs:
% STUDY - studyset structure containing some or all... |
github | ZijingMao/baselineeegtest-master | std_pvaf.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_pvaf.m | 3,535 | utf_8 | 3244c50b0ea6577e8f51f7107250c283 | % std_pvaf() - Compute 'percent variance accounted for' (pvaf) by specified
% ICA component clusters. This function computes eeg_pvaf on each
% of the component of the cluster and then average them. See
% eeg_pvaf for more information. This function uses the
% Usage:
% ... |
github | ZijingMao/baselineeegtest-master | std_mergeclust.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_mergeclust.m | 3,678 | utf_8 | 8a328c6df1c40cfc3d89f72eb8af8a11 | % std_mergeclust() - Commandline function, to merge several clusters.
% Usage:
% >> [STUDY] = std_mergeclust(STUDY, ALLEEG, mrg_cls, name);
% Inputs:
% STUDY - EEGLAB STUDY set comprising some or all of the EEG datasets in ALLEEG.
% ALLEEG - global EEGLAB vector of EEG stru... |
github | ZijingMao/baselineeegtest-master | std_findoutlierclust.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_findoutlierclust.m | 599 | utf_8 | 5cf670b56c3d2178f15c05b6c8482328 | % std_findoutlierclust() - determine whether an outlier cluster already exists
% for a specified cluster. If so, return the outlier cluster index.
% If not, return zero. This helper function is called by
% pop_clustedit(), std_moveoutlier(), std_renameclust().
funct... |
github | ZijingMao/baselineeegtest-master | std_indvarmatch.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_indvarmatch.m | 2,411 | utf_8 | 5902a4b72dc6351b4f1b4c26c2975ab8 | % std_indvarmatch - match independent variable value in a list of values
%
% Usage:
% indices = std_indvarmatch(value, valuelist);
%
% Input:
% value - [string|real|cell] value to be matched
% valuelist - [cell array] cell array of string, numerical values or
% cell array
%
% Output:... |
github | ZijingMao/baselineeegtest-master | std_renamestudyfiles.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_renamestudyfiles.m | 3,659 | utf_8 | 4f9bcafcb1c0e952fab0e36174fc66b2 | % std_renamestudyfiles() - rename files for design 1 if necessary. In design
% 1, for backward compatibility, files could have
% legacy names. For consistency these files now
% need to be renamed. Note that the STUDY is
% ... |
github | ZijingMao/baselineeegtest-master | pop_specparams.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/pop_specparams.m | 10,087 | utf_8 | f64596380d4c81cfb3653b30b7accfe4 | % pop_specparams() - Set plotting and statistics parameters for computing
% STUDY component spectra.
% Usage:
% >> STUDY = pop_specparams(STUDY, 'key', 'val');
%
% Inputs:
% STUDY - EEGLAB STUDY set
%
% Plot options:
% 'topofreq' - [real] Plot Spectrum scalp maps at one spec... |
github | ZijingMao/baselineeegtest-master | std_erp.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_erp.m | 10,502 | utf_8 | 521c5aedf3d9acd898c441a4f4942fa2 | % std_erp() - Constructs and returns channel or ICA activation ERPs for a dataset.
% Saves the ERPs into a Matlab file, [dataset_name].icaerp, for
% data channels or [dataset_name].icaerp for ICA components,
% in the same directory as the dataset file. If such a file
% ... |
github | ZijingMao/baselineeegtest-master | pop_erpimparams.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/pop_erpimparams.m | 8,436 | utf_8 | 239b2e9f4a563e64fe4a3d7d631a5b62 | % pop_erpimparams() - Set plotting and statistics parameters for
% computing and plotting STUDY mean ERPimages and measure
% statistics. Settings are stored within the STUDY
% structure (STUDY.etc.erpimparams) which is used
% whenever plotti... |
github | ZijingMao/baselineeegtest-master | std_dipoleclusters.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_dipoleclusters.m | 13,236 | utf_8 | 6bbd84189c57ef6ab08de937ebf62583 | % std_dipoleclusters - Plots clusters of ICs as colored dipoles in MRI
% images (side, rear, top and oblique angles possible)
%
% std_dipoleclusters(STUDY,ALLEEG,'key1',value1, 'key2',value2, ... );
%
% Inputs:
% STUDY - EEGLAB STUDY set
% ALLEEG - vector of the EEG datasets included in the STUD... |
github | ZijingMao/baselineeegtest-master | std_readtopo.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_readtopo.m | 5,758 | utf_8 | 7a63ec0ca54deebed149d2d525446942 | % std_readtopo() - returns the scalp map of a specified ICA component, assumed
% to have been saved in a Matlab file, [dataset_name].icatopo,
% in the same directory as the dataset file. If this file does
% not exist, use std_topo() to create it, else a pre-clusterin... |
github | ZijingMao/baselineeegtest-master | std_erspplot.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_erspplot.m | 19,648 | utf_8 | cb3030aac38bf825bfc6510c39e5d9cc | % std_erspplot() - plot STUDY cluster ERSPs. Displays either mean cluster ERSPs,
% or else all cluster component ERSPs plus the mean cluster
% ERSP in one figure per condition. The ERSPs can be plotted
% only if component ERSPs were computed and saved in the
% ... |
github | ZijingMao/baselineeegtest-master | std_readtopoclust.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_readtopoclust.m | 4,978 | utf_8 | d3ea827af1511d8ae06298bd66565857 | % std_readtopoclust() - Compute and return cluster component scalp maps.
% Automatically inverts the polarity of component scalp maps
% to best match the polarity of the cluster mean scalp map.
% Usage:
% >> [STUDY clsstruct] = std_readtopoclust(STUDY, ALLEEG, cluste... |
github | ZijingMao/baselineeegtest-master | std_readcustom.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_readcustom.m | 5,376 | utf_8 | ab9dee0bfcae0ccce1ff1c97d5d14089 | % std_readcustom() - Read custom data structure for file save on disk.
%
% Usage:
% >> data = std_readcustom(STUDY, ALLEEG, fileext, 'key', 'val', ...);
%
% Required inputs:
% STUDY - an EEGLAB STUDY set of loaded EEG structures
% ALLEEG - ALLEEG vector of one or more loaded EEG dataset structures
... |
github | ZijingMao/baselineeegtest-master | std_ersp.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_ersp.m | 20,553 | utf_8 | 41dd4eed5c09acca4f4c7b9a30289ea8 | % std_ersp() - Compute ERSP and/or ITC transforms for ICA components
% or data channels of a dataset. Save results into Matlab
% float files.
%
% Function description:
% The function computes the mean ERSP or ITC for the selected
% dataset ICA components or data c... |
github | ZijingMao/baselineeegtest-master | std_setcomps2cell.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_setcomps2cell.m | 3,998 | utf_8 | 6f637e1842fe051b8c6772049b76f035 | % std_setcomps2cell - convert .sets and .comps to cell array. The .sets and
% .comps format is useful for GUI but the cell array
% format is used for plotting and statistics.
%
% Usage:
% [ struct setinds allinds ] = std_setcomps2cell(STUDY, clustind);
% [ struct ... |
github | ZijingMao/baselineeegtest-master | pop_study.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/pop_study.m | 32,127 | utf_8 | 5cba10c4d5dd87706b4d34e32c1c98c0 | % pop_study() - create a new STUDY set structure defining a group of related EEG datasets.
% The STUDY set also contains information about each of the datasets: the
% subject code, subject group, experimental condition, and session. This can
% be provided interactively i... |
github | ZijingMao/baselineeegtest-master | std_convertdesign.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_convertdesign.m | 1,356 | utf_8 | 186f56b44af9306eb22e85b0ccd8896b | % std_convertdesign - temporary function converting STUDY design legacy
% format to new format.
function STUDY = std_convertdesign(STUDY,ALLEEG);
for index = 1:length(STUDY.design)
design(index).name = STUDY.design(index).name;
design(index).variable(1).label = STUDY.design(in... |
github | ZijingMao/baselineeegtest-master | std_renameclust.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_renameclust.m | 3,890 | utf_8 | c2149e8286112cc50bb730ff01424cdf | % std_renameclust() - Commandline function, to rename clusters using specified (mnemonic) names.
% Usage:
% >> [STUDY] = std_renameclust(STUDY, ALLEEG, cluster, new_name);
% Inputs:
% STUDY - EEGLAB STUDY set comprising some or all of the EEG datasets in ALLEEG.
% ALLEEG - global ... |
github | ZijingMao/baselineeegtest-master | toporeplot.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/toporeplot.m | 32,771 | utf_8 | a2d2fb39ae360df3cbefbd0d42f15e4a | % toporeplot() - re-plot a saved topoplot() output image (a square matrix)
% in a 2-D circular scalp map view (as looking down at the top
% of the head). May also be used to re-plot a mean topoplot()
% map for a number of subjects and/or components without all
% ... |
github | ZijingMao/baselineeegtest-master | std_selectdataset.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_selectdataset.m | 3,936 | utf_8 | 2a1032fd19689b4c864e36ea390e7aff | % std_selectdataset() - select datasets and trials for a given independent
% variable with a given set of values.
%
% Usage:
% >> [STUDY] = std_selectdataset(STUDY, ALLEEG, indvar, indvarvals);
%
% Inputs:
% STUDY - EELAB STUDY structure
% ALLEEG - EELAB dataset structure
% indv... |
github | ZijingMao/baselineeegtest-master | pop_clust.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/pop_clust.m | 17,363 | utf_8 | b5e06dc979fd397f7493bb99bc676b93 | % pop_clust() - select and run a clustering algorithm on components from an EEGLAB STUDY
% structure of EEG datasets. Clustering data should be prepared beforehand using
% pop_preclust() and/or std_preclust(). The number of clusters must be
% specified in advance. If called i... |
github | ZijingMao/baselineeegtest-master | pop_erspparams.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/pop_erspparams.m | 8,995 | utf_8 | 670aed78afeb3667c344e153cf8879fc | % pop_erspparams() - Set plotting and statistics parameters for
% computing and plotting STUDY mean (and optionally
% single-trial) ERSP and ITC measures and measure
% statistics. Settings are stored within the STUDY
% structure (STUDY.etc.... |
github | ZijingMao/baselineeegtest-master | std_specplot.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_specplot.m | 5,582 | utf_8 | a9230bd77bad7d1ec5ac55b5c61beed8 | % std_specplot() - plot STUDY component cluster spectra, either mean spectra
% for all requested clusters in the same figure, with spectra
% for different conditions (if any) plotted in different colors,
% or spectra for each specified cluster in a separate figure
... |
github | ZijingMao/baselineeegtest-master | std_movecomp.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_movecomp.m | 6,804 | utf_8 | a592dff7e0ffc5b384d4dcc8b41d55b6 | % std_movecomp() - Move ICA component(s) from one cluster to another.
%
% Usage:
% >> [STUDY] = std_movecomp(STUDY, ALLEEG, from_cluster, to_cluster, comps);
% Inputs:
% STUDY - STUDY structure comprising all or some of the EEG datasets in ALLEEG.
% ALLEEG - vector of EEG structures in t... |
github | ZijingMao/baselineeegtest-master | std_plottf.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_plottf.m | 14,843 | utf_8 | 9c47a23b3c566b505a98c33727621f9f | % std_plottf() - plot ERSP/ITC images a component
% or channel cluster in a STUDY. Also allows plotting scalp
% maps.
% Usage:
% >> std_plottf( times, freqs, data, 'key', 'val', ...)
% Inputs:
% times - [vector] latencies in ms of the data points.
% freqs - [vector] frequencies in H... |
github | ZijingMao/baselineeegtest-master | std_getindvar.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_getindvar.m | 7,332 | utf_8 | 6ae9d669af217a88f9cf15ea2478d5c6 | % std_getindvar - get independent variables of a STUDY
%
% Usage:
% [indvar indvarvals] = std_getindvar(STUDY);
% [indvar indvarvals] = std_getindvar(STUDY, mode, scandesign);
%
% Input:
% STUDY - EEGLAB STUDY structure
% mode - ['datinfo'|'trialinfo'|'both'] get independent variables
% linked to STU... |
github | ZijingMao/baselineeegtest-master | std_uniformsetinds.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_uniformsetinds.m | 1,311 | utf_8 | 8c693e38166509a1a4f3be6994c4eb1e | % std_uniformsetinds() - Check uniform channel distribution accross datasets
%
% Usage:
% >> boolval = std_uniformsetinds(STUDY);
% Inputs:
% STUDY - EEGLAB STUDY
%
% Outputs:
% boolval - [0|1] 1 if uniform
%
% Authors: Arnaud Delorme, SCCN/UCSD, CERCO/CNRS, 2010-
% Copyright (C) Arna... |
github | ZijingMao/baselineeegtest-master | std_topoplot.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_topoplot.m | 14,216 | utf_8 | 7cfb2105e7776f7634a43d7c02707060 | % std_topoplot() - Command line function to plot cluster component and mean scalp maps.
% Displays either mean cluster/s scalp map/s, or all cluster/s components
% scalp maps with the mean cluster/s scsalp map in one figure.
% The scalp maps can be visualized only if ... |
github | ZijingMao/baselineeegtest-master | std_centroid.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_centroid.m | 14,174 | utf_8 | f1be77fa82ecbcda91a416c38ccf6fb1 | % std_centroid() - compute cluster centroid in EEGLAB dataset STUDY.
% Compute and store the centroid(s) (i.e., mean(s))
% for some combination of six measures on specified
% clusters in a STUDY. Possible measures include: scalp
% maps, ERPs, spectra,... |
github | ZijingMao/baselineeegtest-master | std_loadalleeg.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_loadalleeg.m | 7,104 | utf_8 | 377b0d5ee639622ea35859ef5af323cf | % std_loadalleeg() - constructs an ALLEEG structure, given the paths and file names
% of all the EEG datasets that will be loaded into the ALLEEG
% structure. The EEG datasets may be loaded without their EEG.data
% (see the pop_editoptions() function), so many... |
github | ZijingMao/baselineeegtest-master | std_propplot.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_propplot.m | 8,354 | utf_8 | e7b216945a5dab56aa4be65b1672f850 | % std_propplot() - Command line function to plot component cluster
% properties for a STUDY set.
% Displays mean cluster scalp map, ERP, ERSP;
% dipole model, spectrum, and ITC in one figure
% per cluster. Only meaasures computed during
% ... |
github | ZijingMao/baselineeegtest-master | robust_kmeans.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/robust_kmeans.m | 2,982 | utf_8 | b864201b216bd48106be885d09d04273 | % robust_kmeans() - an extension of Matlab kmeans() that removes outlier
% components from all clusters.
% This is a helper function called from pop_clust().
function [IDX,C,sumd,D,outliers] = robust_kmeans(data,N,STD,MAXiter,method)
% data - pre-clustering data matrix.
% N - number of wanted cluster... |
github | ZijingMao/baselineeegtest-master | std_interp.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_interp.m | 6,657 | utf_8 | 7117e3e4255231bb8538847cbb3531b2 | % std_interp() - interpolate, if needed, a list of named data channels
% for all datasets included in a STUDY. Currently assumes
% that all channels have uniform locations across datasets.
%
% Usage: >> [STUDY ALLEEG] = std_interp(STUDY, ALLEEG, chans, method);
%
% Inputs:
% STU... |
github | ZijingMao/baselineeegtest-master | std_chaninds.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_chaninds.m | 2,244 | utf_8 | f67a5b8ff7e1719881c3267bb7140eba | % std_chaninds() - look up channel indices in a STUDY
%
% Usage:
% >> inds = std_chaninds(STUDY, channames);
% >> inds = std_chaninds(EEG, channames);
% >> inds = std_chaninds(chanlocs, channames);
% Inputs:
% STUDY - studyset structure containing a changrp substructure.
% EE... |
github | ZijingMao/baselineeegtest-master | pop_statparams.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/pop_statparams.m | 23,702 | utf_8 | 93899b57bb471babe075eb43b1944db6 | % pop_statparams() - helper function for pop_erspparams, pop_erpparams, and
% pop_specparams.
%
% Usage:
% >> struct = pop_statparams(struct, 'default');
% >> struct = pop_statparams(struct, 'key', 'val', ...);
%
% Inputs:
% struct - parameter structure. When called with the 'default'
% ... |
github | ZijingMao/baselineeegtest-master | std_maketrialinfo.m | .m | baselineeegtest-master/External Software/EEGLAB/eeglab13_4_4b/functions/studyfunc/std_maketrialinfo.m | 4,932 | utf_8 | 74e88ea317e31cc0a4a5072dca23568b | % std_maketrialinfo() - create trial information structure using the
% .epoch structure of EEGLAB datasets
%
% Usage:
% >> STUDY = std_maketrialinfo(STUDY, ALLEEG);
%
% Inputs:
% STUDY - EEGLAB STUDY set
% ALLEEG - vector of the EEG datasets included in the STUDY structure
%
% ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.