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
JunkangZhang/UFL-HS-RoadDetection-master
CalDistMatL2.m
.m
UFL-HS-RoadDetection-master/UFLkmeans/CalDistMatL2.m
215
utf_8
ff988780c9cd11485d94e84e9614a19a
%% data in row function z = CalDistMatL2(mat1, mat2) xx = sum(mat1.^2, 2); cc = sum(mat2.^2, 2)'; xc = mat1 * mat2'; m = bsxfun(@plus, cc, bsxfun(@minus, xx, 2*xc)); m(m<0) = 0; z = sqrt( m ); % distances
github
SysBioChalmers/GECKO-main
fitGAM.m
.m
GECKO-main/userData/ecYeastGEM/code/fitGAM.m
3,760
utf_8
8ade7307b26fd0f56c9580d9367ce256
function GAM = fitGAM(model,parameters,verbose) % fitGAM % % GAM = fitGAM(model,verbose) % Returns a fitted GAM for the yeast model. % % Usage: GAM = fitGAM(model,verbose) % % Benjamin Sanchez. Last update: 2018-10-27 % Ivan Domenzain. Last update: 2020-04-06 if isfield(parameters,'GAM') GAM = parameters.GAM; el...
github
SysBioChalmers/GECKO-main
sumProtein.m
.m
GECKO-main/userData/ecYeastGEM/code/sumProtein.m
417
utf_8
4e5d1e56400f45e393ac3855bbc3455f
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % P = sumProtein(model) % Calculates protein content from the model. % % Benjamin Sanchez. Last update: 2018-10-27 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function P = sumProtein(model) [~,P,~,~,~,~] = sumB...
github
SysBioChalmers/GECKO-main
simulateGrowth.m
.m
GECKO-main/userData/ecYeastGEM/code/simulateGrowth.m
2,914
utf_8
247091ff00f2dcb5647040ed11a67a36
function flux = simulateGrowth(model,target,C_source,objCoeff,alpha,tol) %simulateGrowth % % Function that performs a series of LP optimizations on an ecModel, % by first maximizing biomass, then fixing a suboptimal value and % proceeding to maximize a given production target reaction, last % a protein pool m...
github
SysBioChalmers/GECKO-main
changeMedia_yeast.m
.m
GECKO-main/userData/ecYeastGEM/code/changeMedia_yeast.m
5,575
utf_8
c3a3c62e0e7b71ed29b147dd10cc1001
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % [model,pos] = changeMedia_yeast(model,c_source,media,flux) % % function that modifies the ecModel and makes it suitable for batch growth % simulations on different carbon sources. % % INPUT: % - model An enzyme constrained model % - c_sou...
github
SysBioChalmers/GECKO-main
scaleBioMass.m
.m
GECKO-main/userData/ecYeastGEM/code/scaleBioMass.m
2,564
utf_8
70c39e4f027d5d3290a2104514ed3175
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % model = scaleBioMass(model,Ptot,GAM,scale_comp) % % Benjamin Sanchez. Last update: 2018-10-23 % Ivan Domenzain. Last update: 2019-09-10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function [model,GAM] = sca...
github
SysBioChalmers/GECKO-main
sumBioMass.m
.m
GECKO-main/userData/ecYeastGEM/code/sumBioMass.m
4,552
utf_8
2ee03280717fd40a9d95c53b2eadc6be
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % [X,P,C,R,D,L] = sumBioMass(model) % Calculates breakdown of biomass for the yeast model: % X -> Biomass fraction without lipids [g/gDW] % P -> Protein fraction [g/gDW] % C -> Carbohydrate fraction [g/gDW] % R -> RNA fraction [g/gDW] % D -> DN...
github
SysBioChalmers/GECKO-main
ecFVA.m
.m
GECKO-main/src/geckomat/utilities/ecFVA.m
1,986
utf_8
e87a85596514798727b4af18fe383c0e
function [minFlux, maxFlux] = ecFVA(ecModel, model) % ecFVA % Flux variability analysis is performed on the ecModel, and isoenzymic % reactions are combined to construct ouput minFlux and maxFlux vectors, % which follow the same order of model.rxns. The output from this % function does not include enzyme usage ...
github
SysBioChalmers/GECKO-main
getECfromDatabase.m
.m
GECKO-main/src/geckomat/get_enzyme_data/getECfromDatabase.m
6,870
utf_8
62e96d3594037f72e9293786e5737e15
function model = getECfromDatabase(model, ecRxns, action, modelAdapter) % getECfromDatabase % Populates the model.ec.eccodes field with enzyme codes that are % extracted from UniProt and KEGG databases, as assigned to the proteins % that catalyze the specific reactions. % % Input: % model an ecModel i...
github
SysBioChalmers/GECKO-main
getECstring.m
.m
GECKO-main/src/geckomat/get_enzyme_data/getECstring.m
695
utf_8
20f9751055afc43a182e1e7e323ca084
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % EC_set = getECstring(EC_set,ecNumbers) % % Provides a single string with all the EC numbers associated to a given % protein with according to the next format: "ECX.X.X.X ECX.X.X.X ECX.X.X.X" % % Ivan Domenzain. Last edited: 2018-09-06 %...
github
SysBioChalmers/GECKO-main
findECInDB.m
.m
GECKO-main/src/geckomat/get_enzyme_data/findECInDB.m
5,226
utf_8
ef8c62ecff8088a536fcd88758dfaee2
function [EC,conflicts] = findECInDB(gene_set, DBecNum, DBMW, geneIndex, geneHashMap) % findECInDB % Collects enzyme codes for genes from the UniProt or KEGGdatabase. % % Input: % gene_set genes from a given metabolic reaction % DBecNum array of EC numbers % DBMW array of molecular weights in Da %...
github
SysBioChalmers/GECKO-main
loadBRENDAdata.m
.m
GECKO-main/src/geckomat/get_enzyme_data/loadBRENDAdata.m
2,869
utf_8
575ea5a4804deb65d36958d3ca9d6faf
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function [KCATcell, SAcell] = loadBRENDAdata(modelAdapter) if nargin < 1 || isempty(modelAdapter) modelAdapter = ModelAdapterManager.getDefaultAdapter(); if isempty(modelAdapter) error('Either send in a modelAdapter or set the ...
github
SysBioChalmers/GECKO-main
loadDatabases.m
.m
GECKO-main/src/geckomat/get_enzyme_data/loadDatabases.m
7,454
utf_8
901075458afbad7aeec46536830a8a55
function databases = loadDatabases(selectDatabase,modelAdapter) % loadDatabases % Loads (and downloads if necessary) the organism-specific KEGG and % UniProt databases that are required to extract protein information. The % uniprotID and keggID are taken from the ModelAdapter. % % Input: % selectDatabase which...
github
SysBioChalmers/GECKO-main
findMaxValue.m
.m
GECKO-main/src/geckomat/kcat_sensitivity_analysis/findMaxValue.m
2,856
utf_8
9c49386b2f968b661e0633b6dc5c8599
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %function [value,organism,parameter] = findMaxValue(EC_cell,BRENDA, SA_cell) % % Function that gets the maximum kinetic parameter (Kcat or S.A.*Mw) from % the BRENDA files for the specified set of EC numbers. The algorithm also % returns the ...
github
SysBioChalmers/GECKO-main
truncateValues.m
.m
GECKO-main/src/geckomat/kcat_sensitivity_analysis/truncateValues.m
751
utf_8
ffc5054faf78e21ad3749919a8e41678
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % table = truncateValues(table,cols) % table cell array or table where some columns have values that should % be truncated % cols index or indices of columns with values to be truncated % % Benjamin Sanchez Last edited: 20...
github
SysBioChalmers/GECKO-main
anaerobicModel.m
.m
GECKO-main/src/geckomat/kcat_sensitivity_analysis/Bayesian/anaerobicModel.m
14,548
utf_8
d275a398b54a403e585e2ea588ed955c
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % anaerobicModel.m % Converts model to anaerobic % % Benjamin J. Sanchez % Feiran Li - 2019-09-24 % Feiran Li - Last update: 2019-10-02 modify the order of changes %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% func...
github
SysBioChalmers/GECKO-main
abc_max.m
.m
GECKO-main/src/geckomat/kcat_sensitivity_analysis/Bayesian/abc_max.m
6,005
utf_8
9b6ac8495ac9e7ec12ce6a13f2e4b321
function [rmse_final,exp,simulated,growthdata,max_growth]=abc_max(ecModel,kcat_random_all,growthdata,max_growth,proc,sample_generation,j,rxn2block) % setProtPoolSize % Internal function in BayesianSensitivityTuning. Gets the average RMSE for % a certain set of growth data and kcats. % % Input: % ecModel ...
github
SysBioChalmers/GECKO-main
changeMedia.m
.m
GECKO-main/src/geckomat/kcat_sensitivity_analysis/Bayesian/changeMedia.m
6,449
utf_8
8e4b035146b5a33923c8e49e5ef0dd88
function [model,pos] = changeMedia(model,c_source,media,anox,flux) %changeMedia % % Function that modifies the ecModel and makes it suitable for batch growth % simulations on different carbon sources. % % INPUT: % - model: An enzyme constrained model % - media: Media type ('YEP' for complex, % ...
github
SysBioChalmers/GECKO-main
fuzzyKcatMatching.m
.m
GECKO-main/src/geckomat/gather_kcats/fuzzyKcatMatching.m
20,247
utf_8
6df2f45eb9c264f6b8db23fd4d156331
function kcatList = fuzzyKcatMatching(model, ecRxns, modelAdapter, forceWClvl) % fuzzyKcatMatching % Matchs the model EC numbers and substrates to the BRENDA database, to % return the corresponding kcats for each reaction. If no exact match is % found, less specific kcat values are found from (a) evolutionary % ...
github
SysBioChalmers/GECKO-main
makeEcModel.m
.m
GECKO-main/src/geckomat/change_model/makeEcModel.m
18,193
utf_8
43e40dff960a4cb41e0c0a65d8f8f40e
function [model, noUniprot] = makeEcModel(model, geckoLight, modelAdapter) % makeEcModel % Expands a conventional genome-scale model (in RAVEN format) with enzyme % information and prepares the reactions for integration of enzyme usage % coefficients. This function contains all the steps that need to be done % ...
github
SysBioChalmers/GECKO-main
geckoCoreFunctionTests.m
.m
GECKO-main/test/unit_tests/geckoCoreFunctionTests.m
31,959
utf_8
8981a06923cf13b79c6b3ffd2aa432a6
%run this test case with the command %results = runtests('geckoCoreFunctionTests.m') function tests = geckoCoreFunctionTests tests = functiontests(localfunctions); end %code for writing the PhylDistStruct file for testing %phylDistStruct = struct(); %phylDistStruct.ids = {'tst';'fls'}; %phylDistStruct.names = {'t...
github
juliacamps/IMAS-master
extractSegments.m
.m
IMAS-master/Multiagents_Rescuers_Project/Project_code/matlab-files/extractSegments.m
5,554
utf_8
00d0caa5ef51c5e7d5d75635f7f56631
function segments = extractSegments(map,C) % Extrae los segmentos de paths del mapa y los devuelve en un array de % structs con la siguiente forma: % - points: matriz Nx2 con las coordenadas de los N puntos que forman % el segmento % - length: vector con la distancia desde el origen del segmento a % ...
github
juliacamps/IMAS-master
getMapCorners.m
.m
IMAS-master/Multiagents_Rescuers_Project/Project_code/matlab-files/getMapCorners.m
1,500
iso_8859_1
15c25998d45d568a5bd99cd4859b6c87
function C = getMapCorners(map) % Esta funcion devuelve un struct C donde se almacenan las esquinas del % mapa con el siguiente formato: % - corners: Matriz Nx2 con las coordenadas de las N esquinas % - isNode: vector booleano de N elementos indicando si se trata de % un nodo (bifurcacion) % Aplicamo...
github
linhongseba/ClusterandSummaryKPartite-master
GraphSumPlus.m
.m
ClusterandSummaryKPartite-master/KSummary/matlab/Search_clustering/GraphSumPlus.m
10,721
utf_8
2ff09a729b925bc4040404dcea8b767a
function [Summary,Cluster,f] = GraphSumPlus(A,varargin) % % Input: % k-partite graph A, given as cell array with matrix A{i,j}=A{j,i} % describing weights between vertices of type i and those of type j % % Additional optional input [param,value]: % clusters maximum number of super vertices (default n) % ...
github
linhongseba/ClusterandSummaryKPartite-master
Initilize.m
.m
ClusterandSummaryKPartite-master/KSummary/matlab/Basic_clustering/Initilize.m
2,159
utf_8
5475ff90ed1e9401022176e43d100083
function [B,C,powerA] = Initilize(A,hasCon, n,r) k=size(A,1); B=cell(k,k); C=cell(k,1); powerA=0; maxcluster=max(r); % s=cputime; if maxcluster<50 for i=1:k C{i}=max(randn(n(i),r(i)),0.00001); C{i}=C{i}./repmat(sum(C{i},2),1,r(i)); end else for i=1...
github
doluoke/Jason2_Altika_TimeseriesGeneration-master
uncertainty.m
.m
Jason2_Altika_TimeseriesGeneration-master/uncertainty.m
569
utf_8
5d7a2f7aa7015909100934e51ac5b798
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % This function was provided to Modurodoluwa Okeowo by Hygonki Lee (PhD) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function rmse = uncertainty(hgt) [m n]=size(hgt); if n~=1 hgt = hgt'; end if l...
github
doluoke/Jason2_Altika_TimeseriesGeneration-master
netcdf_read.m
.m
Jason2_Altika_TimeseriesGeneration-master/netcdf_read.m
5,097
utf_8
3cc73e65d1ed73e0a6836af118228033
function S = netcdf(File,varargin) % Function to read NetCDF files % S = netcdf(File) % Input Arguments % File = NetCDF file to read % Optional Input Arguments: % 'Var',Var - Read data for VarArray(Var), default [1:length(S.VarArray)] % 'Rec',Rec - Read data for Record(Rec), default [1:S.NumRecs] % Output Argum...
github
doluoke/Jason2_Altika_TimeseriesGeneration-master
jason2_gdr_info.m
.m
Jason2_Altika_TimeseriesGeneration-master/jason2_gdr_info.m
15,718
utf_8
1d1942bc9ab72fe45e80ab4b702e978d
function jason2_gdr_info( In_Pass, lat_range, File_Suffix_name ) %JASON2_GDR_EXTRACT Summary of this function goes here % Detailed explanation goes here %------------------------------------------% % To read Jason-2 GDR data version D % % Input areguments are ( PassNumber as Integer ,LatitudeRange as 1x2 array...
github
doluoke/Jason2_Altika_TimeseriesGeneration-master
dirwalk.m
.m
Jason2_Altika_TimeseriesGeneration-master/dirwalk.m
7,340
utf_8
a29e2e8934aba6acbfa8f810c9fbe5ac
function varargout = dirwalk(topPath, visitor, varargin) %DIRWALK Generate the file names in a directory tree by walking the tree % % Description: % Function DIRWALK generates the file names in a directory tree by walking the tree % top-down. For each directory in the tree rooted at directory topPath. % Fo...
github
doluoke/Jason2_Altika_TimeseriesGeneration-master
gre2mjd.m
.m
Jason2_Altika_TimeseriesGeneration-master/gre2mjd.m
1,442
utf_8
ea05a9a3c50b226d3bd98c1d25ec53a5
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % This function was provided to Modurodoluwa Okeowo by Hygonki Lee (PhD) % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function dmjd = gre2mjd(iDATE,fsec) % Convert gregorian to modified julian date % Upd...
github
doluoke/Jason2_Altika_TimeseriesGeneration-master
iqrange.m
.m
Jason2_Altika_TimeseriesGeneration-master/iqrange.m
593
utf_8
e4899effa8dacd47f8a4c00977c86259
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % This function computes the Interquantile Range (IQR) of a % column data % Written by: Modurodoluwa Okeowo %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function [ lower_Lim upper_Lim ] = iqrange( Data_4lim ) ...
github
myncepu/ACO-master
acotsp.m
.m
ACO-master/acotsp.m
5,685
utf_8
765f4cda66cf3b31cf3d1903faa362e1
function [shortestLength, shortestRoute] = acotsp(cityPosition, isPlot, ... numAnt, maxIter, alpha, beta, rho, q) % acotsp use ACO(Ant Colony Algorithm) to solve TSP(Travelling Salesman Problem) % [SHORTESTLENGTH, SHORTESTROUTE] = ACOTSP(CITYPOSITION, ISPLOT, ... % NUMANT, MAXITER, ALPHA, BETA, RHO, Q) % % Solve ...
github
Gijom/TEAP-master
doxygen-guide-matlab.m
.m
TEAP-master/doc/doxygen-guide-matlab.m
5,905
utf_8
070ee468dcd69a7b2ed315f30d131461
%> @file documentationGuidelines.m %> @brief Documentation guidelines to extract documentation using Doxygen %====================================================================== %> @mainpage Documentation guidelines %> %> @section intro Introduction %> %> The @b doxygen software (http://www.doxygen.org) allows you ...
github
Gijom/TEAP-master
Bulk_assert_mine.m
.m
TEAP-master/src/bulksigs/Bulk_assert_mine.m
1,271
utf_8
93cdcc8eb81c9957ecc3181130f24ae4
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Bulk_update_signal.m
.m
TEAP-master/src/bulksigs/Bulk_update_signal.m
1,244
utf_8
5749406b828e1f6b1e811a1efccb9eac
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Bulk_new_empty.m
.m
TEAP-master/src/bulksigs/Bulk_new_empty.m
899
utf_8
0ec11a114aae5984ecd7d9a823aaab90
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Bulk_get_signals.m
.m
TEAP-master/src/bulksigs/Bulk_get_signals.m
1,117
utf_8
bebd60417a163daa44ed65f5746ebf91
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Bulk_get_signal.m
.m
TEAP-master/src/bulksigs/Bulk_get_signal.m
1,310
utf_8
eead5ab6ae612fa65988231af8aff0ff
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Bulk_add_signal.m
.m
TEAP-master/src/bulksigs/Bulk_add_signal.m
1,459
utf_8
9dd2c3e4e12288cf14f0315d8a2b50fe
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Bulk_load.m
.m
TEAP-master/src/bulksigs/loading/Bulk_load.m
6,280
utf_8
d590776751b684bcb294aef1e0ea4732
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Bulk_load_eeglab.m
.m
TEAP-master/src/bulksigs/loading/Bulk_load_eeglab.m
3,911
utf_8
e67a5ea2a24c57c1d19f402291470e35
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Bulk_plot.m
.m
TEAP-master/src/bulksigs/visualisation/Bulk_plot.m
1,616
utf_8
442da02f5f5ad5ef08b53c56be12cd97
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
eeg_emptyset.m
.m
TEAP-master/src/utils/eeglab-partial/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
Gijom/TEAP-master
pop_biosig.m
.m
TEAP-master/src/utils/eeglab-partial/pop_biosig.m
8,819
utf_8
3b046cae8664d4ba33284c17d92ffbc9
% 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
Gijom/TEAP-master
eeg_checkset.m
.m
TEAP-master/src/utils/eeglab-partial/eeg_checkset.m
66,318
utf_8
ba990963e5e5ef6a8c010695b51d0ef9
% eeg_checkset() - check the consistency of the fields of an EEG dataset % Also: See EEG dataset structure field descriptions below. % % Usage: >> [EEGOUT,changes] = eeg_checkset(EEG); % perform all checks % except 'makeur' % >> [EEGOUT,change...
github
Gijom/TEAP-master
eeg_checkchanlocs.m
.m
TEAP-master/src/utils/eeglab-partial/eeg_checkchanlocs.m
8,174
utf_8
4164c62998fb5c63df342b2d87d79be1
% eeg_checkchanlocs() - Check the consistency of the channel locations structure % of an EEGLAB dataset. % % Usage: % >> EEG = eeg_checkchanlocs( EEG, 'key1', value1, 'key2', value2, ... ); % >> [chanlocs chaninfo] = eeg_checkchanlocs( chanlocs, chaninfo, 'key1', value1, 'key2', value2, ... ); % %...
github
Gijom/TEAP-master
biosig2eeglab.m
.m
TEAP-master/src/utils/eeglab-partial/biosig2eeglab.m
6,634
utf_8
e82fd87a32821c5d2dc26a117e19fc25
% biosig2eeglab() - convert BIOSIG structue to EEGLAB structure % % Usage: % >> OUTEEG = pop_biosig2eeglab(hdr, data, interval); % % Inputs: % hdr - BIOSIG header % data - BIOSIG data array % % Optional input: % interval - BIOSIG does not remove event which are outside of % the data range when i...
github
Gijom/TEAP-master
finputcheck.m
.m
TEAP-master/src/utils/eeglab-partial/finputcheck.m
8,952
utf_8
158851ff64b79dcefc4bead7397ee6f5
% finputcheck() - check Matlab function {'key','value'} input argument pairs % % Usage: >> result = finputcheck( varargin, fieldlist ); % >> [result varargin] = finputcheck( varargin, fieldlist, ... % callingfunc, mode, verbose ); % Input: % varargin - Cell array ...
github
Gijom/TEAP-master
biosig2eeglabevent.m
.m
TEAP-master/src/utils/eeglab-partial/biosig2eeglabevent.m
2,893
utf_8
e46fed3b39908dcd8fddac5e4c06235e
% biosig2eeglabevent() - convert biosig events to EEGLAB event structure % % Usage: % >> eeglabevent = biosig2eeglabevent( biosigevent, interval ) % % Inputs: % biosigevent - BioSig event structure % interval - Period to extract events for, in frames. % Default [] is all. % % Outputs: ...
github
Gijom/TEAP-master
scpopen.m
.m
TEAP-master/src/utils/biosig-partial/t200_FileAccess/scpopen.m
57,461
utf_8
319232bbf91b2baab810be9b39893d4c
function [HDR]=scpopen(arg1,CHAN,arg4,arg5,arg6) % SCPOPEN reads and writes SCP-ECG files % % SCPOPEN is an auxillary function to SOPEN for % opening of SCP-ECG files for reading ECG waveform data % % Use SOPEN instead of SCPOPEN % % See also: fopen, SOPEN, % $Id: scpopen.m 2899 2012-02-21 00:25:35Z schloegl $...
github
Gijom/TEAP-master
openxml.m
.m
TEAP-master/src/utils/biosig-partial/t200_FileAccess/openxml.m
13,944
utf_8
6c11f30fa6291e7e65fcba3b17e86be4
function [HDR]=openxml(arg1,CHAN,arg4,arg5,arg6) % OPENXML reads XML files and tries to extract biosignal data % % This is an auxilary function to SOPEN. % Use SOPEN instead of OPENXML. % % % HDR = openxml(HDR); % % HDR contains the Headerinformation and internal data % % see also: SOPEN, SREAD, SSEEK, STELL, SCLOSE,...
github
Gijom/TEAP-master
matread.m
.m
TEAP-master/src/utils/biosig-partial/t200_FileAccess/matread.m
10,516
utf_8
ee0138aef868c1dca57030a651312048
function [HDR,data,t]=matread(HDR,arg2,idxlist) % MATRREAD Loads (parts of) data stored in Matlab-format % % [HDR,data,timeindex]=matread(HDR,block_number, [startidx, endidx]) % This is the recommended use for Matlab-files generated from ADICHT data % Before using MATREAD, HDR=MATOPEN(filename, 'ADI', ...) must b...
github
Gijom/TEAP-master
multiScaleEntropy.m
.m
TEAP-master/src/utils/others/multiScaleEntropy.m
584
utf_8
3c980d331f91c318557bb479e5d7ab7e
function [MSE] = multiScaleEntropy(data,depth) %calculates Multiscale entropy; Kim and Andre PAMI 2008 r = 0.2*std(data); M_max = 2; MSE = zeros(1,depth); if (length(data)/depth)<20 depth = floor(length(data)/20); end for i = 1:depth temp = sampenc(multiScale(data,i),M_max,r); MSE(i) = temp(2);...
github
Gijom/TEAP-master
readbdf.m
.m
TEAP-master/src/utils/others/readbdf.m
3,566
utf_8
828fb6561f9474299598c5ab690e19f0
% readbdf() - Loads selected Records of an EDF or BDF File % (European Data Format for Biosignals) into MATLAB % % Usage: [DAT,signal] = readedf(EDF_Struct,Records, Mode) % % Notes: % Records1 List of Records for Loading % Mode 0 Autocalibration (default) % 1 No AutoCal...
github
Gijom/TEAP-master
openbdf.m
.m
TEAP-master/src/utils/others/openbdf.m
6,913
utf_8
c73226437ebe1cc46f4cccebd99fc173
% 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@iee...
github
Gijom/TEAP-master
loading_DEAP.m
.m
TEAP-master/src/tests/loading_DEAP.m
1,717
utf_8
a54ff6b31bd64daee051618d8c82857c
%we assume the pre-processed physilogical signals in mat file from DEAP data is being used %this script loads the DEAP data and converts it to the EEGLAB format that %is readable by TEAP %I added minimally required fields to the structure %Mohammad Soleymani June 2015 mohammad.soleymani@unige.ch function loading_DEAP(...
github
Gijom/TEAP-master
Signal_feat_quant.m
.m
TEAP-master/src/signals/Signal_feat_quant.m
970
utf_8
3f77eb2825bcb852b6cdf7dbac88aab9
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__assert_mine.m
.m
TEAP-master/src/signals/Signal__assert_mine.m
1,203
utf_8
46604833c50fdc3ad99464698a7fc33f
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__set_unit.m
.m
TEAP-master/src/signals/Signal__set_unit.m
1,436
utf_8
7a0df6ceba47ed8311b6ad198816423d
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal_feat_mean.m
.m
TEAP-master/src/signals/Signal_feat_mean.m
1,000
utf_8
8b44c6d7f495d89058a4898ec08bcaf1
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__get_unit.m
.m
TEAP-master/src/signals/Signal__get_unit.m
1,190
utf_8
a9cedbec7eb7395308398e4156516c06
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__get_offset.m
.m
TEAP-master/src/signals/Signal__get_offset.m
1,435
utf_8
a0ef029ff225ab5724baa872086607ec
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Raw_convert_1D.m
.m
TEAP-master/src/signals/Raw_convert_1D.m
1,082
utf_8
c89a78d1f3ca5b61ebc7b190338a0418
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__get_signame.m
.m
TEAP-master/src/signals/Signal__get_signame.m
1,253
utf_8
95039f3350e3e19b23936ac08fb0e830
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__set_samprate.m
.m
TEAP-master/src/signals/Signal__set_samprate.m
1,434
utf_8
bda93ca24733392bda88892e41a69517
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__get_raw.m
.m
TEAP-master/src/signals/Signal__get_raw.m
1,128
utf_8
e2c601bce8d5339c3c8e6c07c4325a6b
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal_feat_energy.m
.m
TEAP-master/src/signals/Signal_feat_energy.m
966
utf_8
776eed76e91a050adef82b9b5594a86c
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__set_signame.m
.m
TEAP-master/src/signals/Signal__set_signame.m
1,532
utf_8
460fb5ac2b99f2c81896e9283878a86f
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__assert_range.m
.m
TEAP-master/src/signals/Signal__assert_range.m
1,884
utf_8
bff3cc9f524e1cd38a115a721e5683c5
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal_feat_bandEnergy.m
.m
TEAP-master/src/signals/Signal_feat_bandEnergy.m
2,139
utf_8
bdb684cddd15e8f3f82b9f39edcc827a
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__get_samprate.m
.m
TEAP-master/src/signals/Signal__get_samprate.m
1,272
utf_8
6bc483a7d88646944519057855bf27b7
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal_feat_std.m
.m
TEAP-master/src/signals/Signal_feat_std.m
974
utf_8
fe6f3c4142ab9e693acbd5ac58f2ca54
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__get_absolute.m
.m
TEAP-master/src/signals/Signal__get_absolute.m
1,120
utf_8
157c03cba504aa88845f19168518686c
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__set_absolute.m
.m
TEAP-master/src/signals/Signal__set_absolute.m
1,291
utf_8
3fd8f9eeb1a7562185a5d4f918cd7f2b
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__set_preproc.m
.m
TEAP-master/src/signals/Signal__set_preproc.m
1,255
utf_8
f50b52052a3f20826cf1d4128d439dd4
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__assert_type.m
.m
TEAP-master/src/signals/Signal__assert_type.m
2,676
utf_8
71dae5c4a2b1160d84a83ebeffbaccff
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal_feat_var.m
.m
TEAP-master/src/signals/Signal_feat_var.m
968
utf_8
c876494b90694340ff0cba355d77e039
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__get_window_frames.m
.m
TEAP-master/src/signals/Signal__get_window_frames.m
2,203
utf_8
e2134225e2aa37e2f4cb1d347bdb9c7a
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__set_raw.m
.m
TEAP-master/src/signals/Signal__set_raw.m
1,234
utf_8
34fa6785bf2f99071fb8b3392b27f397
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__get_window.m
.m
TEAP-master/src/signals/Signal__get_window.m
1,790
utf_8
313d05b46a89286d42fda51b5ce2da90
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal_feat_stat_moments.m
.m
TEAP-master/src/signals/Signal_feat_stat_moments.m
1,524
utf_8
8950273af46b74d2691b697f643256f7
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__new_empty.m
.m
TEAP-master/src/signals/Signal__new_empty.m
1,356
utf_8
fde824071febba644ae15cc450bf72a9
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__has_preproc.m
.m
TEAP-master/src/signals/Signal__has_preproc.m
1,529
utf_8
43606f95bda836acbea8a77fac38c068
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
Signal__set_offset.m
.m
TEAP-master/src/signals/Signal__set_offset.m
1,105
utf_8
d740c2eb135e79add8634fd8366707de
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
DMY_assert_type.m
.m
TEAP-master/src/signals/DMY/DMY_assert_type.m
971
utf_8
4d1797618ec28bbf6be6b40e50e1fd92
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
DMY_get_signame.m
.m
TEAP-master/src/signals/DMY/DMY_get_signame.m
251
utf_8
86b071efe0e3aaa9e8aa72d0739727da
%> @file DMY_get_signame.m %> @brief Returns the name of a DMY signal %> @retval name: the name of the DMY signal. In this case: 'DMY' % %> @author Copyright Frank Villaro-Dixon, Public domain, 2014 function name = DMY_get_signame() name = 'DMY';
github
Gijom/TEAP-master
DMY_new_empty.m
.m
TEAP-master/src/signals/DMY/DMY_new_empty.m
859
utf_8
d2911874bed7eba003a0fc81010284d8
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
DMY_aqn_file.m
.m
TEAP-master/src/signals/DMY/acquisition/DMY_aqn_file.m
859
utf_8
8941541db2b8ff5b2dd967589a0d839e
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
DMY_feat_feat1.m
.m
TEAP-master/src/signals/DMY/features/DMY_feat_feat1.m
870
utf_8
280de2b041f61f8a3e586f6edb788f10
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
EMG__assert_type.m
.m
TEAP-master/src/signals/EMG/EMG__assert_type.m
972
utf_8
c3e7c28cd7dc42482572db54037d7d86
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
EMG__new_empty.m
.m
TEAP-master/src/signals/EMG/EMG__new_empty.m
866
utf_8
cf982034d34cd1ea571dc009758566dd
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
EMG__get_signame.m
.m
TEAP-master/src/signals/EMG/EMG__get_signame.m
251
utf_8
93cc0bb85022fb53a2bcf7a1d6a2c1b4
%> @file EMG__get_signame.m %> @brief Get the name of a EMG signal % %> @retval name: the name of the EMG signal, in this case, 'EMG' % %> @author Copyright Frank Villaro-Dixon, Public Domain, 2014 function name = EMG__get_signame() name = 'EMG';
github
Gijom/TEAP-master
EMG_aqn_variable.m
.m
TEAP-master/src/signals/EMG/acquisition/EMG_aqn_variable.m
1,713
utf_8
3905f3094821d60a271852cbe978773d
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
EMG_feat_extr.m
.m
TEAP-master/src/signals/EMG/features/EMG_feat_extr.m
2,651
utf_8
7ac7cf046102f242f1ef9c13df8ce479
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
EEG__assert_type.m
.m
TEAP-master/src/signals/EEG/EEG__assert_type.m
981
utf_8
324b1e540c1123218dc2bfb62c67b08d
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
EEG_has_channel.m
.m
TEAP-master/src/signals/EEG/EEG_has_channel.m
1,245
utf_8
aea4099255c1a038f7d5a0ff7da6c10c
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
EEG_get_elname.m
.m
TEAP-master/src/signals/EEG/EEG_get_elname.m
935
utf_8
c9b2bf897e92fbdcd1e3102b295008ec
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
EEG__get_signame.m
.m
TEAP-master/src/signals/EEG/EEG__get_signame.m
888
utf_8
f294c30dc0b6745c9ea91a049bd426b6
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
EEG_reference_mean.m
.m
TEAP-master/src/signals/EEG/EEG_reference_mean.m
1,504
utf_8
8041c3454e9ef12ba659a2d340384a31
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...
github
Gijom/TEAP-master
EEG_set_channel.m
.m
TEAP-master/src/signals/EEG/EEG_set_channel.m
1,404
utf_8
4cb17ef33a54f2222ff873d84521a52c
%This file is part of TEAP. % %TEAP is free software: you can redistribute it and/or modify %it under the terms of the GNU General Public License as published by %the Free Software Foundation, either version 3 of the License, or %(at your option) any later version. % %TEAP is distributed in the hope that it will be use...