├── .gitattributes ├── ComparisonScript.m ├── FluidDamperExperiment.m ├── GPSupport ├── logdet.m ├── makeGPPlot.m └── tuneHyperparameters.m ├── NIGP ├── calcK.m ├── calcKtest.m ├── calcKtest.m~ ├── calcdf2.m ├── calcdf2u.m ├── calcipKtest.m ├── calcipKtest.m~ ├── derivK.m ├── derivipK.m ├── df2toipK.m ├── dipK2ipK.m ├── gpm.m ├── hypCurbNIGP.m ├── nlmlNIGP.m ├── predNIGP.m ├── readme.m ├── solve_cholE.m ├── testNIGP.m ├── tprod │ ├── ddtprod.c │ ├── dstprod.c │ ├── etprod.m │ ├── license.txt │ ├── makefile │ ├── mxInfo.c │ ├── mxInfo.h │ ├── mxInfo_mex.c │ ├── mxInfo_mex.h │ ├── mxUtils.c │ ├── mxUtils.h │ ├── orderTests.m │ ├── readme │ ├── sdtprod.c │ ├── sstprod.c │ ├── tprod.c │ ├── tprod.def │ ├── tprod.h │ ├── tprod.m │ ├── tprod.mexa64 │ ├── tprod.mexw64 │ ├── tprod_mex.c │ ├── tprod_mex.c~ │ ├── tprod_testcases.c │ ├── tprod_testcases.m │ └── tprod_util.c ├── trainNIGP.m └── util │ ├── bt.m │ ├── chol3.m │ ├── findAlpha.m │ ├── logNormP.m │ ├── maha.m │ ├── minimize.m │ ├── solve_chol.c │ ├── solve_chol.m │ ├── solve_cholE.m │ ├── sq_dist.c │ └── sq_dist.m ├── PlotScript.m ├── README.md └── SONIG ├── NIGPModelToHyperparameters.m ├── addInducingInputPoint.m ├── createDistribution.m ├── createEmptyDistribution.m ├── createSONIG.m ├── dmmat.m ├── getDistributionSize.m ├── getMeasurementDistributions.m ├── getSubDistribution.m ├── hyperparametersToNIGPModel.m ├── implementMeasurement.m ├── joinDistributions.m ├── makeSonigPrediction.m ├── makeSonigStochasticPrediction.m ├── mmat.m ├── mtrace.m └── resetSonig.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/.gitattributes -------------------------------------------------------------------------------- /ComparisonScript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/ComparisonScript.m -------------------------------------------------------------------------------- /FluidDamperExperiment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/FluidDamperExperiment.m -------------------------------------------------------------------------------- /GPSupport/logdet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/GPSupport/logdet.m -------------------------------------------------------------------------------- /GPSupport/makeGPPlot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/GPSupport/makeGPPlot.m -------------------------------------------------------------------------------- /GPSupport/tuneHyperparameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/GPSupport/tuneHyperparameters.m -------------------------------------------------------------------------------- /NIGP/calcK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/calcK.m -------------------------------------------------------------------------------- /NIGP/calcKtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/calcKtest.m -------------------------------------------------------------------------------- /NIGP/calcKtest.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/calcKtest.m~ -------------------------------------------------------------------------------- /NIGP/calcdf2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/calcdf2.m -------------------------------------------------------------------------------- /NIGP/calcdf2u.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/calcdf2u.m -------------------------------------------------------------------------------- /NIGP/calcipKtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/calcipKtest.m -------------------------------------------------------------------------------- /NIGP/calcipKtest.m~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/calcipKtest.m~ -------------------------------------------------------------------------------- /NIGP/derivK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/derivK.m -------------------------------------------------------------------------------- /NIGP/derivipK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/derivipK.m -------------------------------------------------------------------------------- /NIGP/df2toipK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/df2toipK.m -------------------------------------------------------------------------------- /NIGP/dipK2ipK.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/dipK2ipK.m -------------------------------------------------------------------------------- /NIGP/gpm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/gpm.m -------------------------------------------------------------------------------- /NIGP/hypCurbNIGP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/hypCurbNIGP.m -------------------------------------------------------------------------------- /NIGP/nlmlNIGP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/nlmlNIGP.m -------------------------------------------------------------------------------- /NIGP/predNIGP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/predNIGP.m -------------------------------------------------------------------------------- /NIGP/readme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/readme.m -------------------------------------------------------------------------------- /NIGP/solve_cholE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/solve_cholE.m -------------------------------------------------------------------------------- /NIGP/testNIGP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/testNIGP.m -------------------------------------------------------------------------------- /NIGP/tprod/ddtprod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/ddtprod.c -------------------------------------------------------------------------------- /NIGP/tprod/dstprod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/dstprod.c -------------------------------------------------------------------------------- /NIGP/tprod/etprod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/etprod.m -------------------------------------------------------------------------------- /NIGP/tprod/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/license.txt -------------------------------------------------------------------------------- /NIGP/tprod/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/makefile -------------------------------------------------------------------------------- /NIGP/tprod/mxInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/mxInfo.c -------------------------------------------------------------------------------- /NIGP/tprod/mxInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/mxInfo.h -------------------------------------------------------------------------------- /NIGP/tprod/mxInfo_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/mxInfo_mex.c -------------------------------------------------------------------------------- /NIGP/tprod/mxInfo_mex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/mxInfo_mex.h -------------------------------------------------------------------------------- /NIGP/tprod/mxUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/mxUtils.c -------------------------------------------------------------------------------- /NIGP/tprod/mxUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/mxUtils.h -------------------------------------------------------------------------------- /NIGP/tprod/orderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/orderTests.m -------------------------------------------------------------------------------- /NIGP/tprod/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/readme -------------------------------------------------------------------------------- /NIGP/tprod/sdtprod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/sdtprod.c -------------------------------------------------------------------------------- /NIGP/tprod/sstprod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/sstprod.c -------------------------------------------------------------------------------- /NIGP/tprod/tprod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/tprod.c -------------------------------------------------------------------------------- /NIGP/tprod/tprod.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/tprod.def -------------------------------------------------------------------------------- /NIGP/tprod/tprod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/tprod.h -------------------------------------------------------------------------------- /NIGP/tprod/tprod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/tprod.m -------------------------------------------------------------------------------- /NIGP/tprod/tprod.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/tprod.mexa64 -------------------------------------------------------------------------------- /NIGP/tprod/tprod.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/tprod.mexw64 -------------------------------------------------------------------------------- /NIGP/tprod/tprod_mex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/tprod_mex.c -------------------------------------------------------------------------------- /NIGP/tprod/tprod_mex.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/tprod_mex.c~ -------------------------------------------------------------------------------- /NIGP/tprod/tprod_testcases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/tprod_testcases.c -------------------------------------------------------------------------------- /NIGP/tprod/tprod_testcases.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/tprod_testcases.m -------------------------------------------------------------------------------- /NIGP/tprod/tprod_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/tprod/tprod_util.c -------------------------------------------------------------------------------- /NIGP/trainNIGP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/trainNIGP.m -------------------------------------------------------------------------------- /NIGP/util/bt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/util/bt.m -------------------------------------------------------------------------------- /NIGP/util/chol3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/util/chol3.m -------------------------------------------------------------------------------- /NIGP/util/findAlpha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/util/findAlpha.m -------------------------------------------------------------------------------- /NIGP/util/logNormP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/util/logNormP.m -------------------------------------------------------------------------------- /NIGP/util/maha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/util/maha.m -------------------------------------------------------------------------------- /NIGP/util/minimize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/util/minimize.m -------------------------------------------------------------------------------- /NIGP/util/solve_chol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/util/solve_chol.c -------------------------------------------------------------------------------- /NIGP/util/solve_chol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/util/solve_chol.m -------------------------------------------------------------------------------- /NIGP/util/solve_cholE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/util/solve_cholE.m -------------------------------------------------------------------------------- /NIGP/util/sq_dist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/util/sq_dist.c -------------------------------------------------------------------------------- /NIGP/util/sq_dist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/NIGP/util/sq_dist.m -------------------------------------------------------------------------------- /PlotScript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/PlotScript.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/README.md -------------------------------------------------------------------------------- /SONIG/NIGPModelToHyperparameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/NIGPModelToHyperparameters.m -------------------------------------------------------------------------------- /SONIG/addInducingInputPoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/addInducingInputPoint.m -------------------------------------------------------------------------------- /SONIG/createDistribution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/createDistribution.m -------------------------------------------------------------------------------- /SONIG/createEmptyDistribution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/createEmptyDistribution.m -------------------------------------------------------------------------------- /SONIG/createSONIG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/createSONIG.m -------------------------------------------------------------------------------- /SONIG/dmmat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/dmmat.m -------------------------------------------------------------------------------- /SONIG/getDistributionSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/getDistributionSize.m -------------------------------------------------------------------------------- /SONIG/getMeasurementDistributions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/getMeasurementDistributions.m -------------------------------------------------------------------------------- /SONIG/getSubDistribution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/getSubDistribution.m -------------------------------------------------------------------------------- /SONIG/hyperparametersToNIGPModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/hyperparametersToNIGPModel.m -------------------------------------------------------------------------------- /SONIG/implementMeasurement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/implementMeasurement.m -------------------------------------------------------------------------------- /SONIG/joinDistributions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/joinDistributions.m -------------------------------------------------------------------------------- /SONIG/makeSonigPrediction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/makeSonigPrediction.m -------------------------------------------------------------------------------- /SONIG/makeSonigStochasticPrediction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/makeSonigStochasticPrediction.m -------------------------------------------------------------------------------- /SONIG/mmat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/mmat.m -------------------------------------------------------------------------------- /SONIG/mtrace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/mtrace.m -------------------------------------------------------------------------------- /SONIG/resetSonig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HildoBijl/SONIG/HEAD/SONIG/resetSonig.m --------------------------------------------------------------------------------