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
surban/DeepBraille-master
gpcf_mask.m
.m
DeepBraille-master/Matlab/GPstuff/gp/gpcf_mask.m
11,676
windows_1250
d905395e4fe1785d2b5a529906a8ec83
function gpcf = gpcf_mask(varargin) %GPCF_MASK Create a mask covariance function % % Description % GPCF = GPCF_MASK('PARAM1',VALUE1,'PARAM2,VALUE2,...) % creates a mask covariance function structure in % which the named parameters have the specified values. Any % unspecified parameters are set to default...
github
surban/DeepBraille-master
gp_e.m
.m
DeepBraille-master/Matlab/GPstuff/gp/gp_e.m
22,432
utf_8
450ee8d87fb71e877f577168c7731d84
function [e, edata, eprior] = gp_e(w, gp, x, y, varargin) %GP_E Evaluate the energy function (un-normalized negative % log marginal posterior) % % Description % E = GP_E(W, GP, X, Y, OPTIONS) takes a Gaussian process % structure GP together with a matrix X of input vectors and a % matrix Y of targets, ...
github
surban/DeepBraille-master
lik_multinom.m
.m
DeepBraille-master/Matlab/GPstuff/gp/lik_multinom.m
11,654
utf_8
1627dca78b19cb2f88f4dd9237c254f9
function lik = lik_multinom(varargin) %LIK_MULTINOM Create a multinomial likelihood structure % % Description % LIK = LIK_MULTINOM creates multinomial likelihood for multi-class % count data. The observed numbers in each class with C classes is % given as 1xC vector. % % The likelihood is defined as foll...
github
surban/DeepBraille-master
lik_binomial.m
.m
DeepBraille-master/Matlab/GPstuff/gp/lik_binomial.m
20,018
windows_1250
7dc4c2ed8c3e27a93e00f9da88ace6b8
function lik = lik_binomial(varargin) %LIK_BINOMIAL Create a Binomial likelihood structure % % Description % LIK = LIK_BINOMIAL creates Binomial likelihood structure. % % The likelihood is defined as follows: % __ n % p(y|f, z) = || i=1 [ p_i^(y_i)*(1-p_i)^(z_i-y_i)) * % ...
github
surban/DeepBraille-master
lik_loglogistic.m
.m
DeepBraille-master/Matlab/GPstuff/gp/lik_loglogistic.m
25,498
utf_8
ff417749dac3e660f1f3286a249cc41e
function lik = lik_loglogistic(varargin) %LIK_LOGLOGISTIC Create a right censored log-logistic likelihood structure % % Description % LIK = LIK_LOGLOGISTIC('PARAM1',VALUE1,'PARAM2,VALUE2,...) % creates a likelihood structure for a right censored log-logistic % survival model in which the named parameters h...
github
surban/DeepBraille-master
gpcf_sexp.m
.m
DeepBraille-master/Matlab/GPstuff/gp/gpcf_sexp.m
45,003
utf_8
f64b0c6b9500466963044f45564dd4bd
function gpcf = gpcf_sexp(varargin) %GPCF_SEXP Create a squared exponential (exponentiated quadratic) covariance function % % Description % GPCF = GPCF_SEXP('PARAM1',VALUE1,'PARAM2,VALUE2,...) creates % squared exponential (exponentiated quadratic) covariance function % structure in which the named parameter...
github
surban/DeepBraille-master
gpcf_prod.m
.m
DeepBraille-master/Matlab/GPstuff/gp/gpcf_prod.m
17,536
utf_8
e3db0d440e0a85ac0cc353242b3040d2
function gpcf = gpcf_prod(varargin) %GPCF_PROD Create a product form covariance function % % Description % GPCF = GPCF_PROD('cf', {GPCF_1, GPCF_2, ...}) % creates a product form covariance function % GPCF = GPCF_1 .* GPCF_2 .* ... .* GPCF_N % % See also % GP_SET, GPCF_* % % Copyright (c) 2009-2010...
github
surban/DeepBraille-master
scaled_mh.m
.m
DeepBraille-master/Matlab/GPstuff/gp/scaled_mh.m
10,502
utf_8
f544a78c782793ed38fa92b95596454e
function [f, energ, diagn] = scaled_mh(f, opt, gp, x, y, z) %SCALED_MH A scaled Metropolis-Hastings sampling for latent values % % Description % [F, ENERG, DIAG] = SCALED_MH(F, OPT, GP, X, Y) takes the % current latent values F, options structure OPT, Gaussian % process structure GP, inputs X and outputs Y. ...
github
surban/DeepBraille-master
lik_lgp.m
.m
DeepBraille-master/Matlab/GPstuff/gp/lik_lgp.m
9,763
windows_1250
4e1ca7f8fb712ef620d02ea160ddfc7a
function lik = lik_lgp(varargin) %LIK_LGP Create a logistic Gaussian process likelihood structure % % Description % LIK = LIK_LGP creates a logistic Gaussian process likelihood structure % % The likelihood is defined as follows: % __ n % p(y|f) = || i=1 exp(f_i) / Sum_{j=1}^n exp(f_j), % % ...
github
surban/DeepBraille-master
gpmf_squared.m
.m
DeepBraille-master/Matlab/GPstuff/gp/gpmf_squared.m
8,730
utf_8
bf59c57ac433012a10d2d942472044ea
function gpmf = gpmf_squared(varargin) %GPMF_SQUARED Create a squared mean function % % Description % GPMF = GPMF_SQUARED('PARAM1',VALUE1,'PARAM2,VALUE2,...) % creates squared mean function structure in which the named % parameters have the specified values. Any unspecified % parameters are set to defau...
github
surban/DeepBraille-master
gpmf_linear.m
.m
DeepBraille-master/Matlab/GPstuff/gp/gpmf_linear.m
8,680
utf_8
562f85bf64e9db57ded7745e747e9820
function gpmf = gpmf_linear(varargin) %GPMF_LINEAR Create a linear mean function % % Description % GPMF = GPMF_LINEAR('PARAM1',VALUE1,'PARAM2,VALUE2,...) % creates linear mean function structure in which the named % parameters have the specified values. Any unspecified % parameters are set to default val...
github
surban/DeepBraille-master
gpsvi_e.m
.m
DeepBraille-master/Matlab/GPstuff/gp/gpsvi_e.m
9,666
utf_8
6e38f90dde656df013a34a95fdc02ffe
function [e, edata, eprior, param] = gpsvi_e(w, gp, varargin) %GPSVI_E Return log marginal likelihood energy for SVI model % % Description % E = GPSVI_E(W, GP, X, Y, OPTIONS) takes a GP structure GP % together with a matrix X of input vectors and a matrix Y of % target vectors, and returns the energy of the ...
github
surban/DeepBraille-master
gpcf_matern52.m
.m
DeepBraille-master/Matlab/GPstuff/gp/gpcf_matern52.m
30,406
utf_8
2c972389ceb509acf95a82c47af3b2fb
function gpcf = gpcf_matern52(varargin) %GPCF_MATERN52 Create a Matern nu=5/2 covariance function % % Description % GPCF = GPCF_MATERN52('PARAM1',VALUE1,'PARAM2,VALUE2,...) % creates Matern nu=5/2 covariance function structure in which % the named parameters have the specified values. Any % unspecified p...
github
surban/DeepBraille-master
gpcf_exp.m
.m
DeepBraille-master/Matlab/GPstuff/gp/gpcf_exp.m
28,594
utf_8
8502b2fcd276fa010cb8e7e6a616d3ab
function gpcf = gpcf_exp(varargin) %GPCF_EXP Create an exponential covariance function % % Description % GPCF = GPCF_EXP('PARAM1',VALUE1,'PARAM2,VALUE2,...) creates a % exponential covariance function structure in which the named % parameters have the specified values. Any unspecified % parameters are set...
github
surban/DeepBraille-master
gpep_jpred.m
.m
DeepBraille-master/Matlab/GPstuff/gp/gpep_jpred.m
22,312
utf_8
c9109109524192b3d1784ac2d4f22771
function [Eft, Covft, ljpyt] = gpep_jpred(gp, x, y, varargin) %GPEP_PRED Predictions with Gaussian Process EP approximation % % Description % [EFT, COVFT] = GPEP_JPRED(GP, X, Y, XT, OPTIONS) % takes a GP structure together with matrix X of training % inputs and vector Y of training targets, and evaluates the...
github
surban/DeepBraille-master
SuiteSparse_install.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/SuiteSparse_install.m
11,112
utf_8
fb32defab8ad43d072b65d41d20fb41f
function paths = SuiteSparse_install (do_demo) %SuiteSparse_install: compiles and installs all of SuiteSparse % A Suite of Sparse matrix packages, authored or co-authored by Tim Davis, Univ. % Florida. You must be in the same directory as SuiteSparse_install to use this. % % Packages in SuiteSparse: % % UMFPACK ...
github
surban/DeepBraille-master
colamd_test.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/COLAMD/MATLAB/colamd_test.m
11,715
utf_8
67855282bea237b3f5e5aaead650f90e
function colamd_test %COLAMD_TEST test colamd2 and symamd2 % Example: % colamd_test % % COLAMD and SYMAMD testing function. Here we try to give colamd2 and symamd2 % every possible type of matrix and erroneous input that they may encounter. % We want either a valid permutation returned or we want them to fail % gra...
github
surban/DeepBraille-master
ccolamd_test.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CCOLAMD/MATLAB/ccolamd_test.m
11,803
utf_8
2cf7c488966fe7d5987b4062e6f6a1ca
function ccolamd_test %CCOLAMD_TEST extensive test of ccolamd and csymamd % % Example: % ccolamd_test % % See also csymamd, ccolamd, ccolamd_make. % Copyright 1998-2007, Timothy A. Davis, Stefan Larimore, and Siva Rajamanickam % Developed in collaboration with J. Gilbert and E. Ng. help ccolamd_test global ccolamd...
github
surban/DeepBraille-master
klu_make.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/KLU/MATLAB/klu_make.m
10,922
utf_8
e85d62511e714298f5a2601c105ef2fe
function klu_make (with_cholmod) %KLU_MAKE compiles the KLU mexFunctions % % Example: % klu_make % compiles KLU without CHOLMOD % klu_make (1) % with CHOLMOD, CAMD, CCOLAMD, and METIS % % KLU relies on AMD, COLAMD, and BTF for its ordering options, and can % optionally use CHOLMOD, CCOLAMD, CAMD, ...
github
surban/DeepBraille-master
cs_install.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CSparse/MATLAB/cs_install.m
1,729
utf_8
698e3a7be8710df4bca038a373f4850f
function cs_install (do_pause) %CS_INSTALL: compile and install CSparse for use in MATLAB. % Your current working directory must be CSparse/MATLAB in order to use this % function. % % The directories % % CSparse/MATLAB/CSparse % CSparse/MATLAB/Demo % CSparse/MATLAB/UFget % % are added to yo...
github
surban/DeepBraille-master
cs_make.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CSparse/MATLAB/CSparse/cs_make.m
6,443
utf_8
db813bf30398d17dfe66ed1f938ee591
function [objfiles, timestamp_out] = cs_make (f) %CS_MAKE compiles CSparse for use in MATLAB. % Usage: % cs_make % [objfiles, timestamp] = cs_make (f) % % With no input arguments, or with f=0, only those files needing to be % compiled are compiled (like the Unix/Linux/GNU "make" command, but not % r...
github
surban/DeepBraille-master
mynormest1.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CSparse/MATLAB/Test/mynormest1.m
1,843
utf_8
0f6e7b3dd575c4dbfa809e784838035e
function est = mynormest1 (L, U, P, Q) %MYNORMEST1 estimate norm(A,1), using LU factorization (L*U = P*A*Q). % % Example: % est = mynormest1 (L, U, P, Q) % See also: testall % Copyright 2006-2007, Timothy A. Davis. % http://www.cise.ufl.edu/research/sparse n = size (L,1) ; est = 0 ; S = zeros (n,1) ; for k = ...
github
surban/DeepBraille-master
testall.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CSparse/MATLAB/Test/testall.m
1,517
utf_8
221311b233cabd5b041462eeed288254
function testall %TESTALL test all CSparse functions (run tests 1 to 28 below) % % Example: % testall % See also: cs_demo % Copyright 2006-2007, Timothy A. Davis. % http://www.cise.ufl.edu/research/sparse h = waitbar (0, 'CSparse') ; cs_test_make % compile all CSparse, Demo, Text, and Test mexFunctions ...
github
surban/DeepBraille-master
umfpack_report.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/UMFPACK/MATLAB/umfpack_report.m
16,015
utf_8
ab2ab9204411376267d5931f57b6b59b
function umfpack_report (Control, Info) %UMFPACK_REPORT prints optional control settings and statistics % % Example: % umfpack_report (Control, Info) ; % % Prints the current Control settings for umfpack2, and the statistical % information returned by umfpack2 in the Info array. If Control is % an empty matrix...
github
surban/DeepBraille-master
umfpack_make.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/UMFPACK/MATLAB/umfpack_make.m
12,201
utf_8
c47a8208e044186c2dd6795d63bbe158
function umfpack_make (lapack) %UMFPACK_MAKE to compile umfpack2 for use in MATLAB % % Compiles the umfpack2 mexFunction and then runs a simple demo. % % Example: % umfpack_make % use default LAPACK and BLAS % umfpack_make ('lcc_lib/libmwlapack.lib') % for Windows % umfpack_make ...
github
surban/DeepBraille-master
umfpack_btf.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/UMFPACK/MATLAB/umfpack_btf.m
4,651
utf_8
905709090e298d8bfd5e9937181c95b6
function [x, info] = umfpack_btf (A, b, Control) %UMFPACK_BTF factorize A using a block triangular form % % Example: % x = umfpack_btf (A, b, Control) % % solve Ax=b by first permuting the matrix A to block triangular form via dmperm % and then using UMFPACK to factorize each diagonal block. Adjacent 1-by-1 % blocks...
github
surban/DeepBraille-master
cs_install.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CXSparse_newfiles/MATLAB/cs_install.m
1,625
utf_8
7431badf82b77fa1911f89c54dbbb33c
function cs_install (do_pause) %CS_INSTALL: compile and install CXSparse for use in MATLAB. % Your current working directory must be CXSparse/MATLAB in order to use this % function. % % The directories % % CXSparse/MATLAB/CSparse % CXSparse/MATLAB/Demo % CXSparse/MATLAB/UFget % % are added ...
github
surban/DeepBraille-master
cs_make_helper.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CXSparse_newfiles/MATLAB/CSparse/private/cs_make_helper.m
7,402
utf_8
e8052b2646406b94b27bceab5d75632e
function [objfiles, timestamp_out] = cs_make_helper (f, docomplex) %CS_MAKE_HELPER compiles CXSparse for use in MATLAB. % Usage: % [objfiles, timestamp] = cs_make (f, docomplex) % % With f=0, only those files needing to be % compiled are compiled (like the Unix/Linux/GNU "make" command, but not % requirin...
github
surban/DeepBraille-master
testall.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CXSparse_newfiles/MATLAB/Test/testall.m
1,556
utf_8
9b8611aa56e1998763756f72ec719206
function testall %TESTALL test all CSparse functions (run tests 1 to 28 below) % % Example: % testall % See also: cs_demo % Copyright 2006-2007, Timothy A. Davis. % http://www.cise.ufl.edu/research/sparse h = waitbar (0, 'CXSparse') ; cs_test_make % compile all CSparse, Demo, Text, and Test mexFunctions...
github
surban/DeepBraille-master
camd_demo.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CAMD/MATLAB/camd_demo.m
3,308
utf_8
823dfa42e18c7d2753b7dadb43e5cde2
function camd_demo %CAMD_DEMO a demo of camd, using the can_24 matrix % % A demo of CAMD for MATLAB. % % Example: % camd_demo % % See also: camd, camd_make % Copyright 1994-2007, Tim Davis, University of Florida, % Patrick R. Amestoy, Iain S. Duff, and Yanqing Chen. % This orders the same matrix as the ANSI C demo,...
github
surban/DeepBraille-master
cs_install.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CXSparse/MATLAB/cs_install.m
1,625
utf_8
7431badf82b77fa1911f89c54dbbb33c
function cs_install (do_pause) %CS_INSTALL: compile and install CXSparse for use in MATLAB. % Your current working directory must be CXSparse/MATLAB in order to use this % function. % % The directories % % CXSparse/MATLAB/CSparse % CXSparse/MATLAB/Demo % CXSparse/MATLAB/UFget % % are added ...
github
surban/DeepBraille-master
cs_make_helper.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CXSparse/MATLAB/CSparse/private/cs_make_helper.m
7,402
utf_8
e8052b2646406b94b27bceab5d75632e
function [objfiles, timestamp_out] = cs_make_helper (f, docomplex) %CS_MAKE_HELPER compiles CXSparse for use in MATLAB. % Usage: % [objfiles, timestamp] = cs_make (f, docomplex) % % With f=0, only those files needing to be % compiled are compiled (like the Unix/Linux/GNU "make" command, but not % requirin...
github
surban/DeepBraille-master
mynormest1.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CXSparse/MATLAB/Test/mynormest1.m
1,843
utf_8
0f6e7b3dd575c4dbfa809e784838035e
function est = mynormest1 (L, U, P, Q) %MYNORMEST1 estimate norm(A,1), using LU factorization (L*U = P*A*Q). % % Example: % est = mynormest1 (L, U, P, Q) % See also: testall % Copyright 2006-2007, Timothy A. Davis. % http://www.cise.ufl.edu/research/sparse n = size (L,1) ; est = 0 ; S = zeros (n,1) ; for k = ...
github
surban/DeepBraille-master
testall.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CXSparse/MATLAB/Test/testall.m
1,556
utf_8
9b8611aa56e1998763756f72ec719206
function testall %TESTALL test all CSparse functions (run tests 1 to 28 below) % % Example: % testall % See also: cs_demo % Copyright 2006-2007, Timothy A. Davis. % http://www.cise.ufl.edu/research/sparse h = waitbar (0, 'CXSparse') ; cs_test_make % compile all CSparse, Demo, Text, and Test mexFunctions...
github
surban/DeepBraille-master
cholmod_make.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CHOLMOD/MATLAB/cholmod_make.m
10,939
utf_8
1fe1b7470711101787a8e019798fbc53
function cholmod_make (metis_path) %CHOLMOD_MAKE compiles the CHOLMOD mexFunctions % % Example: % cholmod_make % % CHOLMOD relies on AMD and COLAMD, and optionally CCOLAMD, CAMD, and METIS. % All but METIS are distributed with CHOLMOD. To compile CHOLMOD to use METIS % you must first place a copy of the metis-4.0 di...
github
surban/DeepBraille-master
graph_demo.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CHOLMOD/MATLAB/graph_demo.m
2,476
utf_8
d68493e617f06b2d5a601b7cb3b91a33
function graph_demo (n) %GRAPH_DEMO graph partitioning demo % graph_demo(n) constructs an set of n-by-n 2D grids, partitions them, and % plots them in one-second intervals. n is optional; it defaults to 60. % % Example: % graph_demo % % See also DELSQ, NUMGRID, GPLOT, TREEPLOT % Copyright 2006-2007, T...
github
surban/DeepBraille-master
cholmod_demo.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CHOLMOD/MATLAB/cholmod_demo.m
3,684
utf_8
366c6ffc28d9204098b51142c5e72445
function cholmod_demo %CHOLMOD_DEMO a demo for CHOLMOD % % Tests CHOLMOD with various randomly-generated matrices, and the west0479 % matrix distributed with MATLAB. Random matrices are not good test cases, % but they are easily generated. It also compares CHOLMOD and MATLAB on the % sparse matrix problem used in the...
github
surban/DeepBraille-master
test15.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CHOLMOD/MATLAB/Test/test15.m
3,742
utf_8
138acfd9c60538711b73c3f3938a3644
function test15 (nmat) %TEST15 test symbfact2 vs MATLAB % Example: % test15(nmat) % See also cholmod_test % Copyright 2006-2007, Timothy A. Davis, University of Florida fprintf ('=================================================================\n'); index = UFget ; % only test matrices with nrows = 109000 or less...
github
surban/DeepBraille-master
test26.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/CHOLMOD/MATLAB/Test/test26.m
1,919
utf_8
76a21ab29ef4ddc3b64ae785a716c51a
function test26 (do_metis) %TEST26 test logical full and sparse matrices % Example: % test26 % See also cholmod_test % Copyright 2006-2007, Timothy A. Davis, University of Florida fprintf ('=================================================================\n'); fprintf ('test26: test logical full and sparse matrices...
github
surban/DeepBraille-master
meshnd_example.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/MESHND/meshnd_example.m
2,391
utf_8
b73633dae23b3d361785dff0a3577e93
function meshnd_example %MESHND_EXAMPLE example usage of meshnd and meshsparse. % % Example: % meshnd_example % % See also meshnd. % Copyright 2007, Timothy A. Davis, Univ. of Florida help meshnd % 2D mesh, compare with Cleve Moler's demos m = 7 ; n = 7 ; [G p pinv Gnew] = meshnd (m,n) ; fprintf ('Original mesh:...
github
surban/DeepBraille-master
meshnd.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/MESHND/meshnd.m
3,103
utf_8
f852a9aec88b5fcf8d39f1afe5d6eb25
function [G, p, pinv, Gnew] = meshnd (arg1,n,k) %MESHND creation and nested dissection of a regular 2D or 3D mesh. % [G p pinv Gnew] = meshnd (m,n) constructs an m-by-n 2D mesh G, and then finds % a permuted mesh Gnew where Gnew = pinv(G) and G = p(Gnew). meshnd(m,n,k) % creates an m-by-n-by-k 3D mesh. % % [G p pinv G...
github
surban/DeepBraille-master
ssmult_install.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/SSMULT/ssmult_install.m
6,256
utf_8
ca7bbd625a43cfd1c3cec4e2980ff27c
function ssmult_install (dotests) %SSMULT_INSTALL compiles, installs, and tests ssmult. % Note that the "lcc" compiler provided with MATLAB for Windows can generate % slow code; use another compiler if possible. Your current directory must be % SSMULT for ssmult_install to work properly. If you use Linux/Unix/Mac, I ...
github
surban/DeepBraille-master
pagerankdemo.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/MATLAB_Tools/pagerankdemo.m
6,301
utf_8
2a933a39d67b7f916bc79b747055d403
function pagerankdemo (steps) % PAGERANKDEMO draw a 6-node web and compute its pagerank % % PAGERANKDEMO draws the 6-node "tiny web" in Section 2.11 of "Numerical % Computing with MATLAB", by Cleve Moler, SIAM, 2004. It then simulates the % computation of Google's PageRank algorithm, by randomly selecting links to % t...
github
surban/DeepBraille-master
gipper.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/MATLAB_Tools/gipper.m
7,444
utf_8
b1e1e96f392196e2afd7ffa43315ff4d
function files_out = gipper (directory, include, exclude, exclude_hidden) %GIPPER zip selected files and subdirectories (gipper = grep + zip) % % files = gipper (directory, include, exclude, exclude_hidden) ; % % Creates a zip file of all files and subdirectories in a directory. A file in % the directory or any of i...
github
surban/DeepBraille-master
test_factorize.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/MATLAB_Tools/Factorize/Test/test_factorize.m
9,197
utf_8
618b320207064c39ea0d7956e06a6ed8
function err = test_factorize (A) %TEST_FACTORIZE test the accuracy of the factorization object % % Example % test_factorize (A) ; % where A is a square matrix (sparse or dense) % % See also test_all, factorize1, factorize, inverse, mldivide % Copyright 2009, Timothy A. Davis, University of Florida if (nargin < ...
github
surban/DeepBraille-master
shellgui.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/MATLAB_Tools/shellgui/shellgui.m
11,655
utf_8
989265d0d56df9f25461086f5878b569
function varargout = shellgui(varargin) %SHELLGUI GUI interface for seashell function % Timothy A. Davis, Chapman Hall / CRC Press, 7th edition. % Controls the parameters a, b, c, n, azimuth, and elevation, using % sliders. To the whole range of each parameter, click on the button to % the right of each slider...
github
surban/DeepBraille-master
spok_test.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/MATLAB_Tools/spok/spok_test.m
1,896
utf_8
fb75171c79dfb5ddc82c0cd60c48db62
function spok_test %SPOK_TEST installs and tests SPOK % % Example: % spok_install % % See also sparse, spok, spok_install % Copyright 2008, Tim Davis, University of Florida % compile and install spok help spok ; spok_install ; c = pwd ; cd private ; mex spok_invalid.c ; cd (c) ; % test with valid matrices fprintf ...
github
surban/DeepBraille-master
waitex.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/MATLAB_Tools/waitmex/waitex.m
1,047
utf_8
65beaefa68f21bc993f23673d3d2c040
function result = waitex %WAITEX same as the waitexample mexFunction, just in M instead of C. % The only purpose of this function is to serve as a precise description of % what the waitexample mexFunction does. % % Example: % waitex % draw a waitbar, make progress, and then close the waitbar % h = waitex ;...
github
surban/DeepBraille-master
find_components_example.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/MATLAB_Tools/find_components/find_components_example.m
3,897
utf_8
a53a3fbb3ee31c9062389fd2faf0f302
function find_components_example(example) %FIND_COMPONENTS_EXAMPLE gives an example usage of find_components. % % Example: % find_components_example(0) % a small example, with lots of printing % find_components_example(1) % Doug's example, with lots of printing % find_components_example(2) % a large example, j...
github
surban/DeepBraille-master
spqr_make.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/SPQR/MATLAB/spqr_make.m
17,403
utf_8
b2219499a73fd1e89a27ba4c1286be03
function spqr_make (metis_path,opt1,opt2) %SPQR_MAKE compiles the SuiteSparseQR mexFunctions % % Example: % spqr_make % % SuiteSparseQR relies on CHOLMOD, AMD, and COLAMD, and optionally CCOLAMD, % CAMD, and METIS. All but METIS are distributed with CHOLMOD. To compile % SuiteSparseQR to use METIS you must first pl...
github
surban/DeepBraille-master
UFpage.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/UFcollection/UFpage.m
18,515
utf_8
f7bbbbf0f99dcc348d3d968ee195f656
function UFpage (matrix, index, figures) %UFPAGE create web page for a matrix in UF Sparse Matrix Collection % % Usage: % UFpage (matrix, index, figures) % % matrix: id or name of matrix to create the web page for. % index: the UF index, from UFget. % figures: 1 if the figures are to be created, 0 otherwise % % Ex...
github
surban/DeepBraille-master
UFread.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/UFcollection/UFread.m
13,594
utf_8
f661a98aa4deaee771002bd338d97870
function Problem = UFread (directory, tmp) %UFREAD read a Problem in Matrix Market or Rutherford/Boeing format % containing a set of files created by UFwrite, in either Matrix Market or % Rutherford/Boeing format. See UFwrite for a description of the Problem struct. % % Usage: Problem = UFread (directory) % % Example: ...
github
surban/DeepBraille-master
UFwrite.m
.m
DeepBraille-master/Matlab/GPstuff/SuiteSparse/UFcollection/UFwrite.m
17,757
utf_8
c4256659f09dc533119bcaa94146d846
function UFwrite (Problem, Master, arg3, arg4) %UFWRITE write a Problem in Matrix Market or Rutherford/Boeing format % containing a set of text files in either Matrix Market or Rutherford/Boeing % format. The Problem can be read from the files back into MATLAB via UFread. % See http://www.cise.ufl.edu/research/sparse/...
github
surban/DeepBraille-master
test_modelassesment2.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_modelassesment2.m
3,187
utf_8
fa7bd3fe41c3d0844cdd7696137e9a49
function test_suite = test_modelassesment2 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_MODELASSESMENT2 % % Co...
github
surban/DeepBraille-master
test_regression_sparse1.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_regression_sparse1.m
2,398
utf_8
20d0e530e5d0ee1c176daa3718cfcb3c
function test_suite = test_regression_sparse1 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_REGRESSION_SPARSE1 ...
github
surban/DeepBraille-master
test_multiclass.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_multiclass.m
2,049
utf_8
9810cd1ed6ec07d5d1b96b1bd2b9098f
function test_suite = test_multiclass % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_MULTICLASS % % Copyright (c...
github
surban/DeepBraille-master
test_regression_additive2.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_regression_additive2.m
1,942
utf_8
b339a2452fe805bf1664ee16fb451751
function test_suite = test_regression_additive2 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_REGRESSION_ADDITI...
github
surban/DeepBraille-master
test_multiclass_nested_ep.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_multiclass_nested_ep.m
1,951
utf_8
9b06c143f46b3bb2c582ad629f743606
function test_suite = test_multiclass_nested_ep % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_MULTICLASS_NESTED...
github
surban/DeepBraille-master
test_quantilegp.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_quantilegp.m
2,082
utf_8
f7c5ffdf17c5b5fbe4678ebb494e8e93
function test_suite = test_quantilegp % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_QUANTILEGP % % Copyright (c...
github
surban/DeepBraille-master
test_binomial1.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_binomial1.m
1,961
utf_8
5f82936849123d3e5aa47ce9d68c6637
function test_suite = test_binomial1 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_BINOMIAL1 % % Copyright (c) ...
github
surban/DeepBraille-master
test_improvemarginals.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_improvemarginals.m
2,511
utf_8
8f3c096aa5add88b755c8230f2391acd
function test_suite = test_improvemarginals % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_IMPROVEMARGINALS % % ...
github
surban/DeepBraille-master
test_modelassesment1.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_modelassesment1.m
3,749
utf_8
e71425f7aa0444872095b3bfd21f05bf
function test_suite = test_modelassesment1 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_MODELASSESMENT1 % % Co...
github
surban/DeepBraille-master
test_svi_classific.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_svi_classific.m
2,086
utf_8
1041269acbe2c38ae2aed377edb2cb8b
function test_suite = test_svi_classific % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_SVI_CLASSIFIC % % Copyri...
github
surban/DeepBraille-master
test_memorysave.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_memorysave.m
1,768
utf_8
82dc287a376bb0e99a3da1b0df35ccf3
function test_suite = test_memorysave % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_MEMORYSAVE % % Copyright (c...
github
surban/DeepBraille-master
test_regression_meanf.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_regression_meanf.m
1,924
utf_8
1c449c04de45b105d38967c5514d2b25
function test_suite = test_regression_meanf % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_REGRESSION_MEANF % % ...
github
surban/DeepBraille-master
test_regression_ppcs.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_regression_ppcs.m
2,138
utf_8
5b4afdb5bc2d58be358e28a5ae0b7299
function test_suite = test_regression_ppcs % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_REGRESSION_PPCS % % Co...
github
surban/DeepBraille-master
test_derivativeobs.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_derivativeobs.m
2,172
utf_8
67e58ca699e78553a436b6f25b083642
function test_suite = test_derivativeobs % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_DERIVATIVEOBS % % Copyri...
github
surban/DeepBraille-master
test_spatial1.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_spatial1.m
2,084
utf_8
e6a7568e4b73bc34ecc4dfe567d0b8a1
function test_suite = test_spatial1 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_SPATIAL1 % % Copyright (c) 20...
github
surban/DeepBraille-master
test_periodic.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_periodic.m
2,152
utf_8
ddcf9b17ed23479ff761dc7695d7a6cd
function test_suite = test_periodic % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_PERIODIC % % Copyright (c) 20...
github
surban/DeepBraille-master
test_regression_additive1.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_regression_additive1.m
2,221
utf_8
f4d9c6282e9be140d689a0e0f596fe0e
function test_suite = test_regression_additive1 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_REGRESSION_ADDITI...
github
surban/DeepBraille-master
test_zinegbin.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_zinegbin.m
1,981
utf_8
61d50a0734b8ad7369201492a145bcd1
function test_suite = test_zinegbin % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_ZINEGBIN % % Copyright (c) 20...
github
surban/DeepBraille-master
test_hierprior.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_hierprior.m
2,491
utf_8
4bb31e4a1106c99a22c4d6dd620f2b64
function test_suite = test_hierprior % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_HIERPRIOR % % Copyright (c) ...
github
surban/DeepBraille-master
test_regression_sparse2.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_regression_sparse2.m
2,237
utf_8
3818352ddeccb1de1b4017752f3800a1
function test_suite = test_regression_sparse2 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_REGRESSION_SPARSE2 ...
github
surban/DeepBraille-master
test_classific.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_classific.m
2,461
utf_8
9b158844ea8823adc6fe517d6cde53d3
function test_suite = test_classific % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_CLASSIFIC % % Copyright (c) ...
github
surban/DeepBraille-master
test_monotonic2.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_monotonic2.m
2,107
utf_8
07a84ab1cd5719b1a1c0204e57936f05
function test_suite = test_monotonic2 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_MONOTONIC2 % % Copyright (c...
github
surban/DeepBraille-master
test_loopred.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_loopred.m
2,325
utf_8
0c8dafee2ba61fe1f09561249c762e12
function test_suite = test_loopred % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_LOOPRED % % Copyright (c) 2011...
github
surban/DeepBraille-master
test_spatial2.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_spatial2.m
2,153
utf_8
4e43f2abaf5425789f12a3d91db7717b
function test_suite = test_spatial2 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_SPATIAL2 % % Copyright (c) 20...
github
surban/DeepBraille-master
test_regression_hier.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_regression_hier.m
1,934
utf_8
77fd34d0481776e152515efeae310945
function test_suite = test_regression_hier % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_REGRESSION_HIER % % Co...
github
surban/DeepBraille-master
test_kalman2.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_kalman2.m
2,110
utf_8
d037d75dc84951e5de68b1a7d3aa959a
function test_suite = test_kalman2 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_KALMAN2 % % Copyright (c) 2011...
github
surban/DeepBraille-master
test_neuralnetcov.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_neuralnetcov.m
1,995
utf_8
e90a1476928f9ee5feaa23c202bd77a7
function test_suite = test_neuralnetcov % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_NEURALNETCOV % % Copyrigh...
github
surban/DeepBraille-master
test_lgcp.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_lgcp.m
1,898
utf_8
76d745b1daa781ca79b982dd68c89937
function test_suite = test_lgcp % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_LGCP % % Copyright (c) 2011-2012 ...
github
surban/DeepBraille-master
test_kalman1.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_kalman1.m
1,966
utf_8
fc405841f0f7e21f481a04658e71d4cb
function test_suite = test_kalman1 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_KALMAN1 % % Copyright (c) 2011...
github
surban/DeepBraille-master
test_hurdle.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_hurdle.m
2,118
utf_8
0b396168b5e110c497d9f1e45c1f2a75
function test_suite = test_hurdle % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_HURDLE % % Copyright (c) 2011-2...
github
surban/DeepBraille-master
rundemo.m
.m
DeepBraille-master/Matlab/GPstuff/tests/rundemo.m
9,101
utf_8
3070d420054e72f965ce4bf538cea366
function rundemo(name, varToSave, mode) %RUNDEMO Run a GPstuff demo and save the results. % % Description % RUNDEMO(name, varToSave, mode) runs the GPstuff demo given in name % and save given variables into the folder 'testValues' or % 'realValues'. This function is used by test_* to compare the results...
github
surban/DeepBraille-master
test_survival_aft.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_survival_aft.m
2,150
utf_8
1cfb41230ce9862d94eb33cb6d7cc1bf
function test_suite = test_survival_aft % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_SURVIVAL_AFT % % Copyrigh...
github
surban/DeepBraille-master
test_multinom.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_multinom.m
1,879
utf_8
8a5a856c5dcf0ea9447be604c6ffacdd
function test_suite = test_multinom % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_MULTINOM % % Copyright (c) 20...
github
surban/DeepBraille-master
test_regression_robust.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_regression_robust.m
2,193
utf_8
9a9c70535e597710cf48b27658328539
function test_suite = test_regression_robust % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_REGRESSION_ROBUST % ...
github
surban/DeepBraille-master
test_svi_regression.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_svi_regression.m
2,441
utf_8
a10d70bc45a3283162525555878bd20c
function test_suite = test_svi_regression % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_SVI_REGRESSION % % Copy...
github
surban/DeepBraille-master
test_survival_coxph.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_survival_coxph.m
1,894
utf_8
b801a430e812081452cf6bfa387be169
function test_suite = test_survival_coxph % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_SURVIVAL_COXPH % % Copy...
github
surban/DeepBraille-master
test_epinf.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_epinf.m
1,946
utf_8
d13b9669d4a2db060003deeeec09dd25
function test_suite = test_epinf % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_EPINF % % Copyright (c) 2011-201...
github
surban/DeepBraille-master
test_binomial_apc.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_binomial_apc.m
2,081
utf_8
a106bdb9fb2253657b402897455a169a
function test_suite = test_binomial_apc % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_BINOMIAL_APC % % Copyrigh...
github
surban/DeepBraille-master
test_regression1.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_regression1.m
3,012
utf_8
389a6001de730b901d612596f38392de
function test_suite = test_regression1 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_REGRESSION1 % % Copyright ...
github
surban/DeepBraille-master
test_binomial2.m
.m
DeepBraille-master/Matlab/GPstuff/tests/test_binomial2.m
2,857
utf_8
580af679893f7302905125873bd054f6
function test_suite = test_binomial2 % Run specific demo, save values and compare the results to the expected. % Works for both xUnit Test Framework package by Steve Eddins and for % the built-in Unit Testing Framework (as of Matlab version 2013b). % % See also % TEST_ALL, DEMO_BINOMIAL2 % % Copyright (c) ...
github
felipepolido/clmclogger-master
clmcplot.m
.m
clmclogger-master/matlab/clmcplot/clmcplot.m
832
utf_8
081e3203931fa161e0e238671b116e71
% CLMCPLOT is a matlab tool to display data trace in space and time. % Just type 'clmcplot" to initiate the program, and use the buttons % in the indicated, straightforward way. % Copyright 2008 Stefan Schaal % Computational Learning and Motor Control Laboratory % University of Southern California % December 19...
github
felipepolido/clmclogger-master
clmcplot_functions.m
.m
clmclogger-master/matlab/clmcplot/clmcplot_functions.m
30,143
utf_8
e492568da1e8b4c8bab1e775c389e58b
function clmcplot_functions(task) % this part of the program implements the switch to various functiontalities % of CLMCPLOT % Copyright 2008 Stefan Schaal % Computational Learning and Motor Control Laboratory % University of Southern California % December 1997-2008 switch task, case 'init', init_clmc...
github
felipepolido/clmclogger-master
mrdplotX_functions.m
.m
clmclogger-master/matlab/mrdplot/mrdplotX_functions.m
31,834
utf_8
4219f05b8872e9dfee74181a005d7e90
function mrdplotX_functions(task) % this part of the program implements the switch to various functiontalities % of MRDPLOT % Copyright 1998 Michael Rochon-Duck & Stefan Schaal % Computational Learning and Motor Control Laboratory % University of Southern California % December 1997 % Added filter button by Ben X, 2013 ...
github
felipepolido/clmclogger-master
mrdplot_functions.m
.m
clmclogger-master/matlab/mrdplot/mrdplot_functions.m
21,881
utf_8
69eae29c814d2f80d14e34b963ec788c
function mrdplot_functions(task) % this part of the program implements the switch to various functiontalities % of MRDPLOT % Copyright 1998 Michael Rochon-Duck & Stefan Schaal % Computational Learning and Motor Control Laboratory % University of Southern California % December 1997 global MRDS; % the structure contain...
github
frcs/alternative-matting-laplacian-master
alternative_matting_laplacian_solver.m
.m
alternative-matting-laplacian-master/alternative_matting_laplacian_solver.m
6,827
utf_8
896611be6015b1057081c3b1b9b21a2a
% %This package contains the code for Alternative Matting Laplacian as % described in % %[Pitie16] An Alternative Matting Laplacian. F. Pitie (2016). In % International Conference on Image Processing (ICCV'16) % % send an email to fpitie@mee.tcd.ie if you want more information % % function [alpha, a, R] = alt...
github
lichao14442/RiGi-master
makeLMfilters.m
.m
RiGi-master/util/makeLMfilters.m
1,895
utf_8
21950924882d8a0c49ab03ef0681b618
function F=makeLMfilters % Returns the LML filter bank of size 49x49x48 in F. To convolve an % image I with the filter bank you can either use the matlab function % conv2, i.e. responses(:,:,i)=conv2(I,F(:,:,i),'valid'), or use the % Fourier transform. SUP=49; % Support of the largest filter (must be...
github
lichao14442/RiGi-master
TestRunDisplay.m
.m
RiGi-master/util/xunit/TestRunDisplay.m
9,772
utf_8
5676f8f435e9c6ceeb16bd2b6bcdc6dd
classdef TestRunDisplay < TestRunMonitor %TestRunDisplay Print test suite execution results. % TestRunDisplay is a subclass of TestRunMonitor. If a TestRunDisplay % object is passed to the run method of a TestComponent, such as a % TestSuite or a TestCase, it will print information to the Command % Window (or ...