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
FMassin/m-NnK-master
bsac.m
.m
m-NnK-master/NaiNo-Kami/NNK/bsac.m
2,487
utf_8
6e541b705eaeb2539c7165200f0eeb89
%BSAC Be SAC % BSAC(xarray,yarray) take an array of x-values and y-values % and format the arrays in a way that is compatible with % the SAC-like routines such as wsac, lh, or ch. % % Examples: % % To create a square root function in matlab in the arrays % xarray and yarray, and then convert the a...
github
FMassin/m-NnK-master
progressbar.m
.m
m-NnK-master/NaiNo-Kami/NNK/progressbar.m
9,760
utf_8
3920950ae2a6f26c0e31a63c789dfa30
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% progress bar : %this m-file modified by Quan Quach on 12/12/07 %email: quan.quach@gmail.com %Original Author: Steve Hoelzer function [stopBar] = progressbar(fractiondone, position) if(~exist('fractiondone')) return end % Description: %...
github
FMassin/m-NnK-master
ch.m
.m
m-NnK-master/NaiNo-Kami/NNK/ch.m
19,575
utf_8
15ae2cceacb28b3717ee10a262bf8a69
%CH change SAC header % % % Change SAC header variables for % SAC files read in to matlab with rsac.m % % Examples: % % To change the SAC variable DELTA from station KATH to % the matlab variable dt: % % KATH=ch(KATH,'DELTA',dt); % % To change the SAC variables STLA and STLO from station KA...
github
FMassin/m-NnK-master
rsac.m
.m
m-NnK-master/NaiNo-Kami/NNK/rsac.m
5,411
utf_8
7e23d1620d943f73926e471413bb5466
%RSAC Read SAC binary files. % by Michael Thorne (4/2004) mthorne@asu.edu % modified by Fred Massin (2010) fred.massin@gmail.com % % RSAC('sacfile',endian) reads in a SAC (seismic analysis code) binary % format file into a 3-column vector. % Column 1 contains time values. % Column 2 contains ampl...
github
FMassin/m-NnK-master
lh.m
.m
m-NnK-master/NaiNo-Kami/Plots/lh.m
12,831
utf_8
cb469d551acd700d0ac73aed84fd72d7
%LH list SAC header % % Read or set matlab variables to SAC header variables from % SAC files read in to matlab with rsac.m % % Examples: % % To list all defined header variables in the file KATH: % lh(KATH) % % To assign the SAC variable DELTA from station KATH to % the matlab variable dt...
github
FMassin/m-NnK-master
n1_2_n2.m
.m
m-NnK-master/NaiNo-Kami/Plots/n1_2_n2.m
1,448
utf_8
f911b9b5883c5bc04cd50e49be3fd103
function [strike2,dip2,rake2]=n1_2_n2(strike1,dip1,rake1) strike1 = strike1+90; strike2=[];dip2=[];rake2=[]; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% dip2 = acosd(sind(dip1)*sind(rake1)) ; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% [rake2]=rigthqua...
github
FMassin/m-NnK-master
arrow3D.m
.m
m-NnK-master/NaiNo-Kami/Plots/arrow3D.m
4,336
utf_8
0325cb0f30cfef638769c845e6293a06
function [flch] = arrow3D(T,P,M,X,Y,Z,colored,cut,ax) if exist('ax','var') == 1 axes(ax) ; else gca ; end large = 1/30 ; enverg = 15 ; flech = 1/2 ; if exist('cut','var') == 0 cut = '3D' ; end if exist('colored','var') == 0 colored = 'b' ; end if exist('M','var') == 0 M = ones(size(T,1),size(T,2)) ...
github
FMassin/m-NnK-master
plot_EQanim.m
.m
m-NnK-master/NaiNo-Kami/Plots/plot_EQanim.m
8,906
utf_8
2e70256b3377246cbacce75c9eaab39f
function plot_EQanim(in) global clust oldclust a dates1 dates2 cumnums clustratio uniqratio neoratio endratio fieldedit hpp hp handles limt RE RU xx yy zz tt ploted pourcentag if in==1 [time,indeq,lims] = taketime ; [clust,oldclust]=takeclust(oldclust); [Xu,Yu,Zu,~,~,~,~,~,~,~,tu] = addisolate(lim...
github
FMassin/m-NnK-master
plot_tilmeters.m
.m
m-NnK-master/NaiNo-Kami/Plots/plot_tilmeters.m
2,030
utf_8
37fd5d0eb0a4b71fe568a32944910ad9
function plot_tilmeters NN=1; [T,R,n]=loadtilt('~/PostDoc_Utah/Datas/Tiltmeters/B205Xshort.txt'); tim(1:n, NN )=T ; tilt(1:n, NN )=R ; head(NN,:)='B205-X'; NN=2; [T,R,n]=loadtilt('~/PostDoc_Utah/Datas/Tiltmeters/B205Yshort.txt'); tim(1:n, NN )=T ; tilt(1:n, NN )=R ; head(NN,:)='B205-Y'; %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%...
github
FMassin/m-NnK-master
linkaxes.m
.m
m-NnK-master/NaiNo-Kami/Plots/linkaxes.m
3,539
utf_8
1eb779f099d71fbfb830e9795ef5cee5
function linkaxes(ax,option) %LINKAXES Synchronize limits of specified 2-D axes % Use LINKAXES to synchronize the individual axis limits % on different subplots within a figure. Calling linkaxes % will make all input axis have identical limits. This is useful % when you want to zoom or pan in one subplot and displa...
github
FMassin/m-NnK-master
fitcumnomalizedcreationrate.m
.m
m-NnK-master/NaiNo-Kami/Plots/fitcumnomalizedcreationrate.m
10,519
utf_8
f8fe89459af5832c9348ecba643171d9
function [alp,lan,mug,ome,fitted]=fitcumnomalizedcreationrate(xdata,ydata) % % Usage : [alp,lan,mug,ome,fitted]=fitcumnomalizedcreationrate(Xobs,Yobs) % % Matlab function from Taisne and Tait "The effect of solidication on a propagating dike", JOURNAL OF GEOPHYSICAL RESEARCH 2010. % % Input : xdata - normalized val...
github
liangjiecn/ControlledRandomSampling-master
KNNSpatialFeatureRandomSamplingFullMap.m
.m
ControlledRandomSampling-master/KNNSpatialFeatureRandomSamplingFullMap.m
3,176
utf_8
9444a31d9cbd8aed23624bfe3bd6d453
% hyperspectral classification with spatial feature(2d coordinates) using % KNN % Jie Liang % 2015-05-20 function KNNSpatialFeatureRandomSamplingFullMap(groundTruthFile, timeofRepeatition) addpath('..\data\remoteData'); addpath('..\tools\libsvm-3.20\matlab'); groundTruth = importdata(groundTruthFile); if ndims(groundTr...
github
liangjiecn/ControlledRandomSampling-master
KNNSpatialFeatureRandomSampling.m
.m
ControlledRandomSampling-master/KNNSpatialFeatureRandomSampling.m
2,775
utf_8
7caca04e80420554344bd7251bfae2d3
% hyperspectral classification with spatial feature(2d coordinates) using % KNN % Jie Liang % 2015-05-20 function KNNSpatialFeatureRandomSampling(groundTruthFile, timeofRepeatition) addpath('..\data\remote sensing data'); addpath('..\tools\libsvm-3.20\matlab'); groundTruth = importdata(groundTruthFile); if ndims(ground...
github
liangjiecn/ControlledRandomSampling-master
NonlinearSVMSpatialFeatureRandomSampling.m
.m
ControlledRandomSampling-master/NonlinearSVMSpatialFeatureRandomSampling.m
3,623
utf_8
f9a9a85211065b57ff5ab5b4f63a4a75
% hyperspectral classification with spatial feature(2d coordinates) using random sampling % and nonlinear SVM % Jie Liang % 2014-09-12 function NonlinearSVMSpatialFeatureRandomSampling(groundTruthFile, timeofRepeatition) addpath('..\data\remote sensing data'); addpath('..\tools\libsvm-3.20\matlab'); groundTruth = impor...
github
liangjiecn/ControlledRandomSampling-master
dwt3d_feature.m
.m
ControlledRandomSampling-master/dwt3d_feature.m
4,610
utf_8
75c304c392a52432cb522ff83ce9ce0d
% Syntax: % feats=dwt3d_feature(DataCube) ; % where DataCube is the 3D hyperspectral data cube with size m*n*p, and the % output is the feature cube with size m*n*15p, which is stacked with 15 % wavelet sub-band features, i.e., when the input hyperspectral data has p % bands, the output feature size is 15p. % % *Not...
github
liangjiecn/ControlledRandomSampling-master
NonlinearSVMSpatialFeatureRandomSamplingFullMap.m
.m
ControlledRandomSampling-master/NonlinearSVMSpatialFeatureRandomSamplingFullMap.m
4,026
utf_8
7d56fe3b7a5a1f1cc03b23401be23d24
% hyperspectral classification with spatial feature(2d coordinates) using random sampling % and nonlinear SVM % Jie Liang % 2014-09-12 function NonlinearSVMSpatialFeatureRandomSamplingFullMap(groundTruthFile, timeofRepeatition) addpath('..\data\remoteData'); addpath('..\tools\libsvm-3.20\matlab'); groundTruth = importd...
github
liangjiecn/ControlledRandomSampling-master
mm.m
.m
ControlledRandomSampling-master/mm.m
1,997
utf_8
6a861cce2f548b47e853be186d108c27
function feat = mm(dataCube) % Jie Liang % mathematical morphological methods % implement the extended morphological profiles method for hyperspectral image classfication % reference - Fauvel, M.; Tarabalka, Y.; Benediktsson, J.A.; Chanussot, J.; Tilton, J.C., "Advances in Spectral-Spatial Classification of Hyperspec...
github
liangjiecn/ControlledRandomSampling-master
regiongrowingPixelNum.m
.m
ControlledRandomSampling-master/tools/RegionGrowing/regiongrowingPixelNum.m
7,748
utf_8
fc479f0f86166227999f2319ac9c4e09
function lMask = regiongrowingPixelNum(dImg, dMaxDif, iSeed, pixelNum) %REGIONGROWING A MEXed 2D/3D region growing algorithm. % % lMASK = REGIONGROWING(dIMG, dMAXDIF, iSEED) Returns a binary mask % lMASK, the result of growing a region from the seed point iSEED. % The stoping critereon is fulfilled if no vox...
github
liangjiecn/ControlledRandomSampling-master
regiongrowing.m
.m
ControlledRandomSampling-master/tools/RegionGrowing/regiongrowing.m
8,119
utf_8
1f10aec0bc9c96dd3b669f6b0c1ac29f
function lMask = RegionGrowing(dImg, dMaxDif, iSeed) %REGIONGROWING A MEXed 2D/3D region growing algorithm. % % lMASK = REGIONGROWING(dIMG, dMAXDIF, iSEED) Returns a binary mask % lMASK, the result of growing a region from the seed point iSEED. % The stoping critereon is fulfilled if no voxels in the region'...
github
jenniferdavid/summer_school_jul14-master
simpleTest.m
.m
summer_school_jul14-master/exercise_motion_planning/V-REP_PRO_EDU_V3_1_2_64_Linux/programming/remoteApiBindings/octave/octave/simpleTest.m
1,770
utf_8
14599226ee64d0b078a765ac9ebd2d3e
% Copyright 2006-2014 Coppelia Robotics GmbH. All rights reserved. % marc@coppeliarobotics.com % www.coppeliarobotics.com % % ------------------------------------------------------------------- % THIS FILE IS DISTRIBUTED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED % WARRANTY. THE USER WILL USE IT AT HIS/HER OWN RIS...
github
jenniferdavid/summer_school_jul14-master
delete.m
.m
summer_school_jul14-master/exercise_motion_planning/V-REP_PRO_EDU_V3_1_2_64_Linux/programming/remoteApiBindings/matlab/matlabOlderThan2008a/@remApi/delete.m
72
utf_8
bbea637ad013e06d52923511c7d7cf9e
% destructor function delete(obj) unloadlibrary(obj.libName); end
github
jenniferdavid/summer_school_jul14-master
simpleTest.m
.m
summer_school_jul14-master/exercise_motion_planning/V-REP_PRO_EDU_V3_1_2_64_Linux/programming/remoteApiBindings/matlab/matlabOlderThan2008a/@remApi/simpleTest.m
1,505
utf_8
69f0dd5deaf14687f9acb43abc6c5096
% Copyright 2006-2013 Dr. Marc Andreas Freese. All rights reserved. % marc@coppeliarobotics.com % www.coppeliarobotics.com % % ------------------------------------------------------------------- % This file is distributed in the hope that it will be useful, % but WITHOUT ANY WARRANTY; without even the implied w...
github
jenniferdavid/summer_school_jul14-master
simpleTest.m
.m
summer_school_jul14-master/exercise_motion_planning/V-REP_PRO_EDU_V3_1_2_64_Linux/programming/remoteApiBindings/matlab/matlab/simpleTest.m
2,107
utf_8
c38c9881d53b9b571011f06451ec53e9
% Copyright 2006-2014 Coppelia Robotics GmbH. All rights reserved. % marc@coppeliarobotics.com % www.coppeliarobotics.com % % ------------------------------------------------------------------- % THIS FILE IS DISTRIBUTED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED % WARRANTY. THE USER WILL USE IT AT HIS/HER OWN RIS...
github
jenniferdavid/summer_school_jul14-master
flann_search.m
.m
summer_school_jul14-master/v-charge-summerschool-cvg-code/image_based_localization/ext/flann-1.8.4-src/share/flann/matlab/flann_search.m
3,564
utf_8
a5a9b7cb6bc8b49d8f0f6c2737c17608
%Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. %Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved. % %THE BSD LICENSE % %Redistribution and use in source and binary forms, with or without %modification, are permitted provided that the following conditions %are met: % ...
github
jenniferdavid/summer_school_jul14-master
flann_load_index.m
.m
summer_school_jul14-master/v-charge-summerschool-cvg-code/image_based_localization/ext/flann-1.8.4-src/share/flann/matlab/flann_load_index.m
1,578
utf_8
f9bcc41fd5972c5c987d6a4d41bdc796
%Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. %Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved. % %THE BSD LICENSE % %Redistribution and use in source and binary forms, with or without %modification, are permitted provided that the following conditions %are met: % ...
github
jenniferdavid/summer_school_jul14-master
test_flann.m
.m
summer_school_jul14-master/v-charge-summerschool-cvg-code/image_based_localization/ext/flann-1.8.4-src/share/flann/matlab/test_flann.m
10,328
utf_8
151c22994b0192f8a071649ad26fbc6b
%Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. %Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved. % %THE BSD LICENSE % %Redistribution and use in source and binary forms, with or without %modification, are permitted provided that the following conditions %are met: % ...
github
jenniferdavid/summer_school_jul14-master
flann_free_index.m
.m
summer_school_jul14-master/v-charge-summerschool-cvg-code/image_based_localization/ext/flann-1.8.4-src/share/flann/matlab/flann_free_index.m
1,614
utf_8
5d719d8d60539b6c90bee08d01e458b5
%Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. %Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved. % %THE BSD LICENSE % %Redistribution and use in source and binary forms, with or without %modification, are permitted provided that the following conditions %are met: % ...
github
jenniferdavid/summer_school_jul14-master
flann_save_index.m
.m
summer_school_jul14-master/v-charge-summerschool-cvg-code/image_based_localization/ext/flann-1.8.4-src/share/flann/matlab/flann_save_index.m
1,563
utf_8
5a44d911827fba5422041529b3c01cf6
%Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. %Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved. % %THE BSD LICENSE % %Redistribution and use in source and binary forms, with or without %modification, are permitted provided that the following conditions %are met: % ...
github
jenniferdavid/summer_school_jul14-master
flann_set_distance_type.m
.m
summer_school_jul14-master/v-charge-summerschool-cvg-code/image_based_localization/ext/flann-1.8.4-src/share/flann/matlab/flann_set_distance_type.m
1,926
utf_8
8ba72989a4ac1bd6b30bec841b9def25
%Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. %Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved. % %THE BSD LICENSE % %Redistribution and use in source and binary forms, with or without %modification, are permitted provided that the following conditions %are met: % ...
github
jenniferdavid/summer_school_jul14-master
flann_search.m
.m
summer_school_jul14-master/v-charge-summerschool-cvg-code/image_based_localization/ext/flann-1.8.4-src/src/matlab/flann_search.m
3,564
utf_8
a5a9b7cb6bc8b49d8f0f6c2737c17608
%Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. %Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved. % %THE BSD LICENSE % %Redistribution and use in source and binary forms, with or without %modification, are permitted provided that the following conditions %are met: % ...
github
jenniferdavid/summer_school_jul14-master
flann_load_index.m
.m
summer_school_jul14-master/v-charge-summerschool-cvg-code/image_based_localization/ext/flann-1.8.4-src/src/matlab/flann_load_index.m
1,578
utf_8
f9bcc41fd5972c5c987d6a4d41bdc796
%Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. %Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved. % %THE BSD LICENSE % %Redistribution and use in source and binary forms, with or without %modification, are permitted provided that the following conditions %are met: % ...
github
jenniferdavid/summer_school_jul14-master
test_flann.m
.m
summer_school_jul14-master/v-charge-summerschool-cvg-code/image_based_localization/ext/flann-1.8.4-src/src/matlab/test_flann.m
10,328
utf_8
151c22994b0192f8a071649ad26fbc6b
%Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. %Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved. % %THE BSD LICENSE % %Redistribution and use in source and binary forms, with or without %modification, are permitted provided that the following conditions %are met: % ...
github
jenniferdavid/summer_school_jul14-master
flann_free_index.m
.m
summer_school_jul14-master/v-charge-summerschool-cvg-code/image_based_localization/ext/flann-1.8.4-src/src/matlab/flann_free_index.m
1,614
utf_8
5d719d8d60539b6c90bee08d01e458b5
%Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. %Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved. % %THE BSD LICENSE % %Redistribution and use in source and binary forms, with or without %modification, are permitted provided that the following conditions %are met: % ...
github
jenniferdavid/summer_school_jul14-master
flann_save_index.m
.m
summer_school_jul14-master/v-charge-summerschool-cvg-code/image_based_localization/ext/flann-1.8.4-src/src/matlab/flann_save_index.m
1,563
utf_8
5a44d911827fba5422041529b3c01cf6
%Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. %Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved. % %THE BSD LICENSE % %Redistribution and use in source and binary forms, with or without %modification, are permitted provided that the following conditions %are met: % ...
github
jenniferdavid/summer_school_jul14-master
flann_set_distance_type.m
.m
summer_school_jul14-master/v-charge-summerschool-cvg-code/image_based_localization/ext/flann-1.8.4-src/src/matlab/flann_set_distance_type.m
1,926
utf_8
8ba72989a4ac1bd6b30bec841b9def25
%Copyright 2008-2009 Marius Muja (mariusm@cs.ubc.ca). All rights reserved. %Copyright 2008-2009 David G. Lowe (lowe@cs.ubc.ca). All rights reserved. % %THE BSD LICENSE % %Redistribution and use in source and binary forms, with or without %modification, are permitted provided that the following conditions %are met: % ...
github
naibaf7/caffe-master
classification_demo.m
.m
caffe-master/matlab/demo/classification_demo.m
5,466
utf_8
45745fb7cfe37ef723c307dfa06f1b97
function [scores, maxlabel] = classification_demo(im, use_gpu) % [scores, maxlabel] = classification_demo(im, use_gpu) % % Image classification demo using BVLC CaffeNet. % % IMPORTANT: before you run this demo, you should download BVLC CaffeNet % from Model Zoo (http://caffe.berkeleyvision.org/model_zoo.html) % % *****...
github
pmoulos/gene-armada-master
NotesEditor.m
.m
gene-armada-master/NotesEditor.m
4,676
utf_8
b98152f11874087646a57714bb8cbc44
function varargout = NotesEditor(varargin) % NOTESEDITOR M-file for NotesEditor.fig % NOTESEDITOR, by itself, creates a new NOTESEDITOR or raises the existing % singleton*. % % H = NOTESEDITOR returns the handle to a new NOTESEDITOR or the handle to % the existing singleton*. % % NOTESE...
github
pmoulos/gene-armada-master
NormalizationEditor.m
.m
gene-armada-master/NormalizationEditor.m
15,295
utf_8
704a0b317e748f6e0f48d767a485fb76
function varargout = NormalizationEditor(varargin) % NORMALIZATIONEDITOR M-file for NormalizationEditor.fig % NORMALIZATIONEDITOR, by itself, creates a new NORMALIZATIONEDITOR or raises the existing % singleton*. % % H = NORMALIZATIONEDITOR returns the handle to a new NORMALIZATIONEDITOR or the hand...
github
pmoulos/gene-armada-master
RankInvariantAffyEditor.m
.m
gene-armada-master/RankInvariantAffyEditor.m
9,793
utf_8
be3b7306531bb35326cf1269a6669dc5
function varargout = RankInvariantAffyEditor(varargin) % RANKINVARIANTAFFYEDITOR M-file for RankInvariantAffyEditor.fig % RANKINVARIANTAFFYEDITOR, by itself, creates a new RANKINVARIANTAFFYEDITOR or raises the existing % singleton*. % % H = RANKINVARIANTAFFYEDITOR returns the handle to a new RANKINV...
github
pmoulos/gene-armada-master
ExportDEEditorAffy.m
.m
gene-armada-master/ExportDEEditorAffy.m
14,815
utf_8
192dbbfdc71b27606d9b8aedd554e747
function varargout = ExportDEEditorAffy(varargin) % EXPORTDEEDITORAFFY M-file for ExportDEEditorAffy.fig % EXPORTDEEDITORAFFY, by itself, creates a new EXPORTDEEDITORAFFY or raises the existing % singleton*. % % H = EXPORTDEEDITORAFFY returns the handle to a new EXPORTDEEDITORAFFY or the handle to ...
github
pmoulos/gene-armada-master
ExpressionProfileEditor.m
.m
gene-armada-master/ExpressionProfileEditor.m
11,857
utf_8
d8cf09c7a4e2944411c7426021fc9627
function varargout = ExpressionProfileEditor(varargin) % EXPRESSIONPROFILEEDITOR M-file for ExpressionProfileEditor.fig % EXPRESSIONPROFILEEDITOR, by itself, creates a new EXPRESSIONPROFILEEDITOR or raises the existing % singleton*. % % H = EXPRESSIONPROFILEEDITOR returns the handle to a new EXPRESS...
github
pmoulos/gene-armada-master
MAPlotEditorAffy.m
.m
gene-armada-master/MAPlotEditorAffy.m
16,633
utf_8
1949dfe3004692669d88d716c9d84a07
function varargout = MAPlotEditorAffy(varargin) % MAPLOTEDITORAFFY M-file for MAPlotEditorAffy.fig % MAPLOTEDITORAFFY, by itself, creates a new MAPLOTEDITORAFFY or raises the existing % singleton*. % % H = MAPLOTEDITORAFFY returns the handle to a new MAPLOTEDITORAFFY or the handle to % the exi...
github
pmoulos/gene-armada-master
FilteringEditorIllumina.m
.m
gene-armada-master/FilteringEditorIllumina.m
18,105
utf_8
89310832912ca78b45de3868c31046b8
function varargout = FilteringEditorIllumina(varargin) % FILTERINGEDITORILLUMINA M-file for FilteringEditorIllumina.fig % FILTERINGEDITORILLUMINA, by itself, creates a new FILTERINGEDITORILLUMINA or raises the existing % singleton*. % % H = FILTERINGEDITORILLUMINA returns the handle to a new FILTERI...
github
pmoulos/gene-armada-master
BackgroundCorrectionEditor.m
.m
gene-armada-master/BackgroundCorrectionEditor.m
8,748
utf_8
2f7b41f7341c357d3d65037e95caeec1
function varargout = BackgroundCorrectionEditor(varargin) % BACKGROUNDCORRECTIONEDITOR M-file for BackgroundCorrectionEditor.fig % BACKGROUNDCORRECTIONEDITOR, by itself, creates a new BACKGROUNDCORRECTIONEDITOR or raises the existing % singleton*. % % H = BACKGROUNDCORRECTIONEDITOR returns the handl...
github
pmoulos/gene-armada-master
SelectConditionsEditor.m
.m
gene-armada-master/SelectConditionsEditor.m
16,447
utf_8
121147a38e034cec07e4d54878ad26ea
function varargout = SelectConditionsEditor(varargin) % SELECTCONDITIONSEDITOR M-file for SelectConditionsEditor.fig % SELECTCONDITIONSEDITOR, by itself, creates a new SELECTCONDITIONSEDITOR or raises the existing % singleton*. % % H = SELECTCONDITIONSEDITOR returns the handle to a new SELECTCONDITI...
github
pmoulos/gene-armada-master
IlluminaImportEditor.m
.m
gene-armada-master/IlluminaImportEditor.m
14,895
utf_8
9a67d16bae7af0ec04219de09911413f
function varargout = IlluminaImportEditor(varargin) % ILLUMINAIMPORTEDITOR M-file for IlluminaImportEditor.fig % ILLUMINAIMPORTEDITOR, by itself, creates a new ILLUMINAIMPORTEDITOR or raises the existing % singleton*. % % H = ILLUMINAIMPORTEDITOR returns the handle to a new ILLUMINAIMPORTEDITOR or t...
github
pmoulos/gene-armada-master
kNNTuneEditor.m
.m
gene-armada-master/kNNTuneEditor.m
16,418
utf_8
7455eb82e24144eff681cb0dd22cfc37
function varargout = kNNTuneEditor(varargin) % KNNTUNEEDITOR M-file for kNNTuneEditor.fig % KNNTUNEEDITOR, by itself, creates a new KNNTUNEEDITOR or raises the existing % singleton*. % % H = KNNTUNEEDITOR returns the handle to a new KNNTUNEEDITOR or the handle to % the existing singleton*. % ...
github
pmoulos/gene-armada-master
SlideDistributionEditorAffy.m
.m
gene-armada-master/SlideDistributionEditorAffy.m
8,682
utf_8
9ebc94492531b883eb91a62bb72e81cd
function varargout = SlideDistributionEditorAffy(varargin) % SLIDEDISTRIBUTIONEDITORAFFY M-file for SlideDistributionEditorAffy.fig % SLIDEDISTRIBUTIONEDITORAFFY, by itself, creates a new SLIDEDISTRIBUTIONEDITORAFFY or raises the existing % singleton*. % % H = SLIDEDISTRIBUTIONEDITORAFFY returns the...
github
pmoulos/gene-armada-master
ExternalImportEditor.m
.m
gene-armada-master/ExternalImportEditor.m
21,400
utf_8
440e37a0b965ace580f05c8ba688beb3
function varargout = ExternalImportEditor(varargin) % EXTERNALIMPORTEDITOR M-file for ExternalImportEditor.fig % EXTERNALIMPORTEDITOR, by itself, creates a new EXTERNALIMPORTEDITOR or raises the existing % singleton*. % % H = EXTERNALIMPORTEDITOR returns the handle to a new EXTERNALIMPORTEDITOR or t...
github
pmoulos/gene-armada-master
FoldChangeEditor.m
.m
gene-armada-master/FoldChangeEditor.m
7,106
utf_8
599256c77dbb016cb1274d7fce4ee73c
function varargout = FoldChangeEditor(varargin) % FOLDCHANGEEDITOR M-file for FoldChangeEditor.fig % FOLDCHANGEEDITOR, by itself, creates a new FOLDCHANGEEDITOR or raises the existing % singleton*. % % H = FOLDCHANGEEDITOR returns the handle to a new FOLDCHANGEEDITOR or the handle to % the exi...
github
pmoulos/gene-armada-master
ExportDEEditor.m
.m
gene-armada-master/ExportDEEditor.m
17,770
utf_8
b0356fd25720cf2e90d6771596b2c1b5
function varargout = ExportDEEditor(varargin) % EXPORTDEEDITOR M-file for ExportDEEditor.fig % EXPORTDEEDITOR, by itself, creates a new EXPORTDEEDITOR or raises the existing % singleton*. % % H = EXPORTDEEDITOR returns the handle to a new EXPORTDEEDITOR or the handle to % the existing singleto...
github
pmoulos/gene-armada-master
HierarchicalClusteringEditor.m
.m
gene-armada-master/HierarchicalClusteringEditor.m
14,490
utf_8
cebe43d0cf98aedad1921e750d76c5d9
function varargout = HierarchicalClusteringEditor(varargin) % HIERARCHICALCLUSTERINGEDITOR M-file for HierarchicalClusteringEditor.fig % HIERARCHICALCLUSTERINGEDITOR, by itself, creates a new HIERARCHICALCLUSTERINGEDITOR or raises the existing % singleton*. % % H = HIERARCHICALCLUSTERINGEDITOR retur...
github
pmoulos/gene-armada-master
FilteringEditorAffy.m
.m
gene-armada-master/FilteringEditorAffy.m
22,367
utf_8
e0c2d080eebd947af6f9c3f903e2b0b6
function varargout = FilteringEditorAffy(varargin) % FILTERINGEDITORAFFY M-file for FilteringEditorAffy.fig % FILTERINGEDITORAFFY, by itself, creates a new FILTERINGEDITORAFFY or raises the existing % singleton*. % % H = FILTERINGEDITORAFFY returns the handle to a new FILTERINGEDITORAFFY or the hand...
github
pmoulos/gene-armada-master
FCMClusteringEditor.m
.m
gene-armada-master/FCMClusteringEditor.m
13,637
utf_8
dfa709145b8ecce07f3cfe63c7d1f31b
function varargout = FCMClusteringEditor(varargin) % FCMCLUSTERINGEDITOR M-file for FCMClusteringEditor.fig % FCMCLUSTERINGEDITOR, by itself, creates a new FCMCLUSTERINGEDITOR or raises the existing % singleton*. % % H = FCMCLUSTERINGEDITOR returns the handle to a new FCMCLUSTERINGEDITOR or the hand...
github
pmoulos/gene-armada-master
NUImageEditor.m
.m
gene-armada-master/NUImageEditor.m
8,625
utf_8
f30e726e119722e58b449cffc28cfbe2
function varargout = NUImageEditor(varargin) % NUIMAGEEDITOR M-file for NUImageEditor.fig % NUIMAGEEDITOR, by itself, creates a new NUIMAGEEDITOR or raises the existing % singleton*. % % H = NUIMAGEEDITOR returns the handle to a new NUIMAGEEDITOR or the handle to % the existing singleton*. % ...
github
pmoulos/gene-armada-master
AnalysisReport.m
.m
gene-armada-master/AnalysisReport.m
20,528
utf_8
67848df03ddd55f2d41b73aaa41df00c
function varargout = AnalysisReport(varargin) % ANALYSISREPORT M-file for AnalysisReport.fig % ANALYSISREPORT, by itself, creates a new ANALYSISREPORT or raises the existing % singleton*. % % H = ANALYSISREPORT returns the handle to a new ANALYSISREPORT or the handle to % the existing singleto...
github
pmoulos/gene-armada-master
kmeansClusteringEditor.m
.m
gene-armada-master/kmeansClusteringEditor.m
12,947
utf_8
80eaa9cc3fdb2be79fb542d4da4a962c
function varargout = kmeansClusteringEditor(varargin) % KMEANSCLUSTERINGEDITOR M-file for kmeansClusteringEditor.fig % KMEANSCLUSTERINGEDITOR, by itself, creates a new KMEANSCLUSTERINGEDITOR or raises the existing % singleton*. % % H = KMEANSCLUSTERINGEDITOR returns the handle to a new KMEANSCLUSTER...
github
pmoulos/gene-armada-master
ARMADA.m
.m
gene-armada-master/ARMADA.m
473,027
utf_8
069f617ffbc62f8dc73f67c710a7a1de
function varargout = ARMADA(varargin) % ARMADA M-file for ARMADA.fig % ARMADA, by itself, creates a new ARMADA or raises the existing % singleton*. % % H = ARMADA returns the handle to a new ARMADA or the handle to % the existing singleton*. % % ARMADA('CALLBACK',hObject,eventData,handl...
github
pmoulos/gene-armada-master
DyeSwapEditor.m
.m
gene-armada-master/DyeSwapEditor.m
5,296
utf_8
10133f7f125a8d9085e37cce7d58ca3b
function varargout = DyeSwapEditor(varargin) % DYESWAPEDITOR M-file for DyeSwapEditor.fig % DYESWAPEDITOR, by itself, creates a new DYESWAPEDITOR or raises the existing % singleton*. % % H = DYESWAPEDITOR returns the handle to a new DYESWAPEDITOR or the handle to % the existing singleton*. % ...
github
pmoulos/gene-armada-master
GCRMAEditor.m
.m
gene-armada-master/GCRMAEditor.m
10,593
utf_8
41f0b79f9ce24d17b9e2892eea3c7be7
function varargout = GCRMAEditor(varargin) % GCRMAEDITOR M-file for GCRMAEditor.fig % GCRMAEDITOR, by itself, creates a new GCRMAEDITOR or raises the existing % singleton*. % % H = GCRMAEDITOR returns the handle to a new GCRMAEDITOR or the handle to % the existing singleton*. % % GCRMAE...
github
pmoulos/gene-armada-master
LDAClassifyEditor.m
.m
gene-armada-master/LDAClassifyEditor.m
14,003
utf_8
3d70c9da477cd19387fbdf0302a2fb43
function varargout = LDAClassifyEditor(varargin) % LDACLASSIFYEDITOR M-file for LDAClassifyEditor.fig % LDACLASSIFYEDITOR, by itself, creates a new LDACLASSIFYEDITOR or raises the existing % singleton*. % % H = LDACLASSIFYEDITOR returns the handle to a new LDACLASSIFYEDITOR or the handle to % ...
github
pmoulos/gene-armada-master
BoxplotEditor.m
.m
gene-armada-master/BoxplotEditor.m
15,589
utf_8
b10d98e7b0822960a816d731cbde5a0c
function varargout = BoxplotEditor(varargin) % BOXPLOTEDITOR M-file for BoxplotEditor.fig % BOXPLOTEDITOR, by itself, creates a new BOXPLOTEDITOR or raises the existing % singleton*. % % H = BOXPLOTEDITOR returns the handle to a new BOXPLOTEDITOR or the handle to % the existing singleton*. % ...
github
pmoulos/gene-armada-master
ExportMATLABEditor.m
.m
gene-armada-master/ExportMATLABEditor.m
8,361
utf_8
b33165add0901c48e9fd159917c58484
function varargout = ExportMATLABEditor(varargin) % EXPORTMATLABEDITOR M-file for ExportMATLABEditor.fig % EXPORTMATLABEDITOR, by itself, creates a new EXPORTMATLABEDITOR or raises the existing % singleton*. % % H = EXPORTMATLABEDITOR returns the handle to a new EXPORTMATLABEDITOR or the handle to ...
github
pmoulos/gene-armada-master
SVMTuneEditor.m
.m
gene-armada-master/SVMTuneEditor.m
31,569
utf_8
89d3749df56fc49a0f85af4d88d71919
function varargout = SVMTuneEditor(varargin) % SVMTUNEEDITOR M-file for SVMTuneEditor.fig % SVMTUNEEDITOR, by itself, creates a new SVMTUNEEDITOR or raises the existing % singleton*. % % H = SVMTUNEEDITOR returns the handle to a new SVMTUNEEDITOR or the handle to % the existing singleton*. % ...
github
pmoulos/gene-armada-master
BoxplotEditorAffy.m
.m
gene-armada-master/BoxplotEditorAffy.m
6,573
utf_8
471b4bddda8a2bb68269723f8240c152
function varargout = BoxplotEditorAffy(varargin) % BOXPLOTEDITORAFFY M-file for BoxplotEditorAffy.fig % BOXPLOTEDITORAFFY, by itself, creates a new BOXPLOTEDITORAFFY or raises the existing % singleton*. % % H = BOXPLOTEDITORAFFY returns the handle to a new BOXPLOTEDITORAFFY or the handle to % ...
github
pmoulos/gene-armada-master
ArrayReport.m
.m
gene-armada-master/ArrayReport.m
5,405
utf_8
77a40756a95367a0c1934a7e8eb79dba
function varargout = ArrayReport(varargin) % ARRAYREPORT M-file for ArrayReport.fig % ARRAYREPORT, by itself, creates a new ARRAYREPORT or raises the existing % singleton*. % % H = ARRAYREPORT returns the handle to a new ARRAYREPORT or the handle to % the existing singleton*. % % ARRAYR...
github
pmoulos/gene-armada-master
RMAEditor.m
.m
gene-armada-master/RMAEditor.m
4,247
utf_8
71f8f5cd7b6069c9a0500ebad67f48c2
function varargout = RMAEditor(varargin) % RMAEDITOR M-file for RMAEditor.fig % RMAEDITOR, by itself, creates a new RMAEDITOR or raises the existing % singleton*. % % H = RMAEDITOR returns the handle to a new RMAEDITOR or the handle to % the existing singleton*. % % RMAEDITOR('CALLBACK'...
github
pmoulos/gene-armada-master
MAPlotEditor.m
.m
gene-armada-master/MAPlotEditor.m
11,669
utf_8
ec000700f0c716f4d603439e30c4815a
function varargout = MAPlotEditor(varargin) % MAPLOTEDITOR M-file for MAPlotEditor.fig % MAPLOTEDITOR, by itself, creates a new MAPLOTEDITOR or raises the existing % singleton*. % % H = MAPLOTEDITOR returns the handle to a new MAPLOTEDITOR or the handle to % the existing singleton*. % % ...
github
pmoulos/gene-armada-master
ExportMATLABEditorAffy.m
.m
gene-armada-master/ExportMATLABEditorAffy.m
8,559
utf_8
ef941ba0dcf1ae747e754b0725dc3c28
function varargout = ExportMATLABEditorAffy(varargin) % EXPORTMATLABEDITORAFFY M-file for ExportMATLABEditorAffy.fig % EXPORTMATLABEDITORAFFY, by itself, creates a new EXPORTMATLABEDITORAFFY or raises the existing % singleton*. % % H = EXPORTMATLABEDITORAFFY returns the handle to a new EXPORTMATLABE...
github
pmoulos/gene-armada-master
PCAEditor.m
.m
gene-armada-master/PCAEditor.m
5,268
utf_8
ad55e0a24522a61e2b0a3709824a049f
function varargout = PCAEditor(varargin) % PCAEDITOR M-file for PCAEditor.fig % PCAEDITOR, by itself, creates a new PCAEDITOR or raises the existing % singleton*. % % H = PCAEDITOR returns the handle to a new PCAEDITOR or the handle to % the existing singleton*. % % PCAEDITOR('CALLBACK'...
github
pmoulos/gene-armada-master
StatisticalSelectionEditor.m
.m
gene-armada-master/StatisticalSelectionEditor.m
37,101
utf_8
c02bb4946495c08df6fa9a1f0195f757
function varargout = StatisticalSelectionEditor(varargin) % STATISTICALSELECTIONEDITOR M-file for StatisticalSelectionEditor.fig % STATISTICALSELECTIONEDITOR, by itself, creates a new STATISTICALSELECTIONEDITOR or raises the existing % singleton*. % % H = STATISTICALSELECTIONEDITOR returns the handl...
github
pmoulos/gene-armada-master
SlideDistributionEditor.m
.m
gene-armada-master/SlideDistributionEditor.m
11,874
utf_8
820de5cea5f0e9d8a1101965f2431b08
function varargout = SlideDistributionEditor(varargin) % SLIDEDISTRIBUTIONEDITOR M-file for SlideDistributionEditor.fig % SLIDEDISTRIBUTIONEDITOR, by itself, creates a new SLIDEDISTRIBUTIONEDITOR or raises the existing % singleton*. % % H = SLIDEDISTRIBUTIONEDITOR returns the handle to a new SLIDEDI...
github
pmoulos/gene-armada-master
SVMTrainEditor.m
.m
gene-armada-master/SVMTrainEditor.m
12,552
utf_8
4d17568cadc150a2466fe33639863415
function varargout = SVMTrainEditor(varargin) % SVMTRAINEDITOR M-file for SVMTrainEditor.fig % SVMTRAINEDITOR, by itself, creates a new SVMTRAINEDITOR or raises the existing % singleton*. % % H = SVMTRAINEDITOR returns the handle to a new SVMTRAINEDITOR or the handle to % the existing singleto...
github
pmoulos/gene-armada-master
DataImportEditor.m
.m
gene-armada-master/DataImportEditor.m
12,770
utf_8
cd6907a0e4a4dd358e2a78dadb817e10
function varargout = DataImportEditor(varargin) % DATAIMPORTEDITOR M-file for DataImportEditor.fig % DATAIMPORTEDITOR, by itself, creates a new DATAIMPORTEDITOR or raises the existing % singleton*. % % H = DATAIMPORTEDITOR returns the handle to a new DATAIMPORTEDITOR or the handle to % the exi...
github
pmoulos/gene-armada-master
ArrayPlotEditor.m
.m
gene-armada-master/ArrayPlotEditor.m
21,225
utf_8
6138379885fb07bb6b3014dffac166de
function varargout = ArrayPlotEditor(varargin) % ARRAYPLOTEDITOR M-file for ArrayPlotEditor.fig % ARRAYPLOTEDITOR, by itself, creates a new ARRAYPLOTEDITOR or raises the existing % singleton*. % % H = ARRAYPLOTEDITOR returns the handle to a new ARRAYPLOTEDITOR or the handle to % the existing s...
github
pmoulos/gene-armada-master
AnnotationEditor.m
.m
gene-armada-master/AnnotationEditor.m
14,299
utf_8
508fc528de36a7fa3b155ccb9e2f35e7
function varargout = AnnotationEditor(varargin) % ANNOTATIONEDITOR M-file for AnnotationEditor.fig % ANNOTATIONEDITOR, by itself, creates a new ANNOTATIONEDITOR or raises the existing % singleton*. % % H = ANNOTATIONEDITOR returns the handle to a new ANNOTATIONEDITOR or the handle to % the exi...
github
pmoulos/gene-armada-master
kNNClassifyEditor.m
.m
gene-armada-master/kNNClassifyEditor.m
9,352
utf_8
818cc74f1c4a5e500bf69d32ba1d5f1a
function varargout = kNNClassifyEditor(varargin) % KNNCLASSIFYEDITOR M-file for kNNClassifyEditor.fig % KNNCLASSIFYEDITOR, by itself, creates a new KNNCLASSIFYEDITOR or raises the existing % singleton*. % % H = KNNCLASSIFYEDITOR returns the handle to a new KNNCLASSIFYEDITOR or the handle to % ...
github
pmoulos/gene-armada-master
VolcanoPlotEditor.m
.m
gene-armada-master/VolcanoPlotEditor.m
9,733
utf_8
b3b5ebad7698416dd5d420d22cba4590
function varargout = VolcanoPlotEditor(varargin) % VOLCANOPLOTEDITOR M-file for VolcanoPlotEditor.fig % VOLCANOPLOTEDITOR, by itself, creates a new VOLCANOPLOTEDITOR or raises the existing % singleton*. % % H = VOLCANOPLOTEDITOR returns the handle to a new VOLCANOPLOTEDITOR or the handle to % ...
github
pmoulos/gene-armada-master
MAImageEditor.m
.m
gene-armada-master/MAImageEditor.m
11,516
utf_8
b77bb04d204f2fa850cfc89c25c06944
function varargout = MAImageEditor(varargin) % MAIMAGEEDITOR M-file for MAImageEditor.fig % MAIMAGEEDITOR, by itself, creates a new MAIMAGEEDITOR or raises the existing % singleton*. % % H = MAIMAGEEDITOR returns the handle to a new MAIMAGEEDITOR or the handle to % the existing singleton*. % ...
github
pmoulos/gene-armada-master
NormalizationEditorAffy.m
.m
gene-armada-master/NormalizationEditorAffy.m
10,556
utf_8
7768b3389563674ef6baa1d58707160e
function varargout = NormalizationEditorAffy(varargin) % NORMALIZATIONEDITORAFFY M-file for NormalizationEditorAffy.fig % NORMALIZATIONEDITORAFFY, by itself, creates a new NORMALIZATIONEDITORAFFY or raises the existing % singleton*. % % H = NORMALIZATIONEDITORAFFY returns the handle to a new NORMALI...
github
pmoulos/gene-armada-master
NormalizationEditorIllumina.m
.m
gene-armada-master/NormalizationEditorIllumina.m
6,600
utf_8
526697cf82ba4c736a2e569dff295590
function varargout = NormalizationEditorIllumina(varargin) % NORMALIZATIONEDITORILLUMINA M-file for NormalizationEditorIllumina.fig % NORMALIZATIONEDITORILLUMINA, by itself, creates a new NORMALIZATIONEDITORILLUMINA or raises the existing % singleton*. % % H = NORMALIZATIONEDITORILLUMINA returns the...
github
pmoulos/gene-armada-master
GenericReport.m
.m
gene-armada-master/GenericReport.m
4,396
utf_8
293495573e1aba86405b6f4e66b168ea
function varargout = GenericReport(varargin) % GENERICREPORT M-file for GenericReport.fig % GENERICREPORT, by itself, creates a new GENERICREPORT or raises the existing % singleton*. % % H = GENERICREPORT returns the handle to a new GENERICREPORT or the handle to % the existing singleton*. % ...
github
pmoulos/gene-armada-master
LDATuneEditor.m
.m
gene-armada-master/LDATuneEditor.m
18,117
utf_8
c641c3ac98e98113e232e86e29615c41
function varargout = LDATuneEditor(varargin) % LDATUNEEDITOR M-file for LDATuneEditor.fig % LDATUNEEDITOR, by itself, creates a new LDATUNEEDITOR or raises the existing % singleton*. % % H = LDATUNEEDITOR returns the handle to a new LDATUNEEDITOR or the handle to % the existing singleton*. % ...
github
pmoulos/gene-armada-master
GapStatEditor.m
.m
gene-armada-master/GapStatEditor.m
11,893
utf_8
7d4287655be456de06db5d3f5119d4ed
function varargout = GapStatEditor(varargin) % GAPSTATEDITOR M-file for GapStatEditor.fig % GAPSTATEDITOR, by itself, creates a new GAPSTATEDITOR or raises the existing % singleton*. % % H = GAPSTATEDITOR returns the handle to a new GAPSTATEDITOR or the handle to % the existing singleton*. % ...
github
pmoulos/gene-armada-master
FilteringEditor.m
.m
gene-armada-master/FilteringEditor.m
14,194
utf_8
4537ebc830e9a467eef4bf4ce332ab2e
function varargout = FilteringEditor(varargin) % FILTERINGEDITOR M-file for FilteringEditor.fig % FILTERINGEDITOR, by itself, creates a new FILTERINGEDITOR or raises the existing % singleton*. % % H = FILTERINGEDITOR returns the handle to a new FILTERINGEDITOR or the handle to % the existing s...
github
pmoulos/gene-armada-master
RankInvariantIlluminaEditor.m
.m
gene-armada-master/RankInvariantIlluminaEditor.m
10,289
utf_8
a997383e4bab6991dd5c842829b0563c
function varargout = RankInvariantIlluminaEditor(varargin) % RANKINVARIANTILLUMINAEDITOR M-file for RankInvariantIlluminaEditor.fig % RANKINVARIANTILLUMINAEDITOR, by itself, creates a new RANKINVARIANTILLUMINAEDITOR or raises the existing % singleton*. % % H = RANKINVARIANTILLUMINAEDITOR returns the...
github
pmoulos/gene-armada-master
ClusteringBatchEditor.m
.m
gene-armada-master/Batch Programmer/ClusteringBatchEditor.m
11,747
utf_8
599404af9cb404cfb21235c0f71a6a86
function varargout = ClusteringBatchEditor(varargin) % CLUSTERINGBATCHEDITOR M-file for ClusteringBatchEditor.fig % CLUSTERINGBATCHEDITOR, by itself, creates a new CLUSTERINGBATCHEDITOR or raises the existing % singleton*. % % H = CLUSTERINGBATCHEDITOR returns the handle to a new CLUSTERINGBATCHEDIT...
github
pmoulos/gene-armada-master
FilterReplicatesB.m
.m
gene-armada-master/Batch Programmer/FilterReplicatesB.m
18,340
utf_8
b9787d18b48bc1f6f4a2bffd9c900137
function DataCellFiltered = FilterReplicatesB(DataCellNormLo,t,gnID,varargin) % % Gene filtering before statistical selection, MAD Centering and data averaging for % filtered missing values based on the Trust Factor % % Cut off genes for all experiments which have no data in all replicates % Replace every gene/...
github
pmoulos/gene-armada-master
StatisticalSelectionBatchEditor.m
.m
gene-armada-master/Batch Programmer/StatisticalSelectionBatchEditor.m
26,509
utf_8
ff8fa0a6e12fd251730066ee43825c25
function varargout = StatisticalSelectionBatchEditor(varargin) % STATISTICALSELECTIONBATCHEDITOR M-file for StatisticalSelectionBatchEditor.fig % STATISTICALSELECTIONBATCHEDITOR, by itself, creates a new STATISTICALSELECTIONBATCHEDITOR or raises the existing % singleton*. % % H = STATISTICALSELECTIO...
github
pmoulos/gene-armada-master
AnalysisViewAffy.m
.m
gene-armada-master/Batch Programmer/AnalysisViewAffy.m
14,199
utf_8
1889dfdb91d77299ba7d7ba70bdb9162
function varargout = AnalysisViewAffy(varargin) % ANALYSISVIEWAFFY M-file for AnalysisViewAffy.fig % ANALYSISVIEWAFFY, by itself, creates a new ANALYSISVIEWAFFY or raises the existing % singleton*. % % H = ANALYSISVIEWAFFY returns the handle to a new ANALYSISVIEWAFFY or the handle to % the exi...
github
pmoulos/gene-armada-master
BatchProgrammer.m
.m
gene-armada-master/Batch Programmer/BatchProgrammer.m
61,942
utf_8
6ce78705c6cafb1afe2e25cd8a2c10d4
function varargout = BatchProgrammer(varargin) % BATCHPROGRAMMER M-file for BatchProgrammer.fig % BATCHPROGRAMMER, by itself, creates a new BATCHPROGRAMMER or raises the existing % singleton*. % % H = BATCHPROGRAMMER returns the handle to a new BATCHPROGRAMMER or the handle to % the existing s...
github
pmoulos/gene-armada-master
StatisticalTestB.m
.m
gene-armada-master/Batch Programmer/StatisticalTestB.m
9,856
utf_8
35f575bc1f6214b16a7bd33cc4be30be
function DataCellStat = StatisticalTestB(DataCellFiltered,t,group,slcstatest,multcorr,thecut,htext) % % Statistical selection procedure: calculate p-values per gene % Available statistical tests are Kruskal-Wallis and ANOVA-1way % % User does not interact with the command window % % Usage: DataCellStat = MA_St...
github
pmoulos/gene-armada-master
BatchProgrammerAffy.m
.m
gene-armada-master/Batch Programmer/BatchProgrammerAffy.m
56,813
utf_8
11f9b1a37553ba5dc1bd286fa21b2bf5
function varargout = BatchProgrammerAffy(varargin) % BATCHPROGRAMMERAFFY M-file for BatchProgrammerAffy.fig % BATCHPROGRAMMERAFFY, by itself, creates a new BATCHPROGRAMMERAFFY or raises the existing % singleton*. % % H = BATCHPROGRAMMERAFFY returns the handle to a new BATCHPROGRAMMERAFFY or the hand...
github
pmoulos/gene-armada-master
AnalysisView.m
.m
gene-armada-master/Batch Programmer/AnalysisView.m
10,408
utf_8
855c829d79342cadd3e6f49ce53ac5cc
function varargout = AnalysisView(varargin) % ANALYSISVIEW M-file for AnalysisView.fig % ANALYSISVIEW, by itself, creates a new ANALYSISVIEW or raises the existing % singleton*. % % H = ANALYSISVIEW returns the handle to a new ANALYSISVIEW or the handle to % the existing singleton*. % % ...
github
pmoulos/gene-armada-master
progressbar.m
.m
gene-armada-master/Utilities/progressbar.m
10,531
utf_8
b75b64e5ea251f1b2f04442ce46b0065
function progressbar(fractiondone, position, msg) % Description: % progressbar(fractiondone,position) provides an indication of the progress of % some task using graphics and text. Calling progressbar repeatedly will update % the figure and automatically estimate the amount of time remaining. % This implementa...
github
pmoulos/gene-armada-master
checkallsame.m
.m
gene-armada-master/Utilities/checkallsame.m
1,760
utf_8
a8142d0963ea40bae620afa17c02b45c
function allsame = checkallsame(x) if isscalar(x) error('x is not a vector! Please read help.') end if isnumeric(x) || ischar(x) xx=shuffle(x); z=xx==x; if isvector(z) allsame=all(z); else allsame=all(all(z)); end elseif iscellstr(x) xx=shuffle(x); ...
github
pmoulos/gene-armada-master
uipickfiles.m
.m
gene-armada-master/Utilities/uipickfiles.m
25,954
utf_8
cd108d112e4714f7d7146255d6795bda
function out = uipickfiles(varargin) %uipickfiles: GUI program to select file(s) and/or directories. % % Syntax: % files = uipickfiles('PropertyName',PropertyValue,...) % % The current directory can be changed by operating in the file navigator: % double-clicking on a directory in the list to move further down...
github
pmoulos/gene-armada-master
myexplorestruct.m
.m
gene-armada-master/Utilities/myexplorestruct.m
4,725
utf_8
724430dcce5d6e14a2139f4992e2e085
function tree = myexplorestruct(h,stru,name,ind) import javax.swing.tree.*; root=ouitreenode('Main','New Project',[],false); set(root,'Name',name); tree=ouitree(h,'Root',root,'ExpandFcn',@myExpfcn); set(tree,'Units','normalized','Position',[0.005 0.027 0.17 0.91]); %was [0.005 0.027 0.25 0.92] set(tree,'NodeW...
github
pmoulos/gene-armada-master
conftable.m
.m
gene-armada-master/Utilities/conftable.m
3,594
utf_8
c9d789e5074177dac2693d64c4e5e7c0
function [conftab,final] = conftable(hat,cl,out,dis) % Display confusion matrix % hat: the vector of predicted classes % cls: the vector of classes % out: 'cell' or 'matrix', if cell, labels can be added to indicate class % dis: display the confusion matrix in read-friendly format % conftab: the confusion tabl...
github
pmoulos/gene-armada-master
quantread.m
.m
gene-armada-master/InputOutput/quantread.m
5,327
utf_8
db304d22d6617205338710269d089a8c
function output = quantread(filename,validcolnames) %QUANTREAD reads QuantArray Results Format files. % % QUANTDATA = QUANTREAD(FILE) reads in ImaGene results format data % from FILE and creates a structure QUANTDATA, containing these fields: % Header % Data % Blocks % ...