├── .gitignore ├── Algorithms ├── ADAPT │ ├── adapt.m │ └── utils │ │ ├── UDGcdf.m │ │ ├── UDGinv.m │ │ └── UDGpdf.m ├── GNC │ ├── gnc.m │ └── utils │ │ ├── areBinaryWeights.m │ │ └── gncWeightsUpdate.m ├── Greedy │ └── greedy.m ├── RANSAC │ ├── idealRansacIterations.m │ └── ransac.m └── utils │ ├── detectionStats.m │ └── printSolutionSummary.m ├── LICENSE.BSD ├── Problems ├── EmptyProblem.m ├── isProblem.m ├── linearRegressionProblem.m └── printProblemSummary.m ├── README.md ├── Solvers └── Linear │ └── leastSquareNorm2.m ├── example.m └── setup.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/.gitignore -------------------------------------------------------------------------------- /Algorithms/ADAPT/adapt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Algorithms/ADAPT/adapt.m -------------------------------------------------------------------------------- /Algorithms/ADAPT/utils/UDGcdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Algorithms/ADAPT/utils/UDGcdf.m -------------------------------------------------------------------------------- /Algorithms/ADAPT/utils/UDGinv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Algorithms/ADAPT/utils/UDGinv.m -------------------------------------------------------------------------------- /Algorithms/ADAPT/utils/UDGpdf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Algorithms/ADAPT/utils/UDGpdf.m -------------------------------------------------------------------------------- /Algorithms/GNC/gnc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Algorithms/GNC/gnc.m -------------------------------------------------------------------------------- /Algorithms/GNC/utils/areBinaryWeights.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Algorithms/GNC/utils/areBinaryWeights.m -------------------------------------------------------------------------------- /Algorithms/GNC/utils/gncWeightsUpdate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Algorithms/GNC/utils/gncWeightsUpdate.m -------------------------------------------------------------------------------- /Algorithms/Greedy/greedy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Algorithms/Greedy/greedy.m -------------------------------------------------------------------------------- /Algorithms/RANSAC/idealRansacIterations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Algorithms/RANSAC/idealRansacIterations.m -------------------------------------------------------------------------------- /Algorithms/RANSAC/ransac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Algorithms/RANSAC/ransac.m -------------------------------------------------------------------------------- /Algorithms/utils/detectionStats.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Algorithms/utils/detectionStats.m -------------------------------------------------------------------------------- /Algorithms/utils/printSolutionSummary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Algorithms/utils/printSolutionSummary.m -------------------------------------------------------------------------------- /LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/LICENSE.BSD -------------------------------------------------------------------------------- /Problems/EmptyProblem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Problems/EmptyProblem.m -------------------------------------------------------------------------------- /Problems/isProblem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Problems/isProblem.m -------------------------------------------------------------------------------- /Problems/linearRegressionProblem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Problems/linearRegressionProblem.m -------------------------------------------------------------------------------- /Problems/printProblemSummary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Problems/printProblemSummary.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/README.md -------------------------------------------------------------------------------- /Solvers/Linear/leastSquareNorm2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/Solvers/Linear/leastSquareNorm2.m -------------------------------------------------------------------------------- /example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/example.m -------------------------------------------------------------------------------- /setup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-SPARK/GNC-and-ADAPT/HEAD/setup.m --------------------------------------------------------------------------------