From 9a0e412c30e107bed9bdc6082b47715bd41e8364 Mon Sep 17 00:00:00 2001 From: "Simon D. Levy" Date: Tue, 16 Sep 2014 20:26:01 -0400 Subject: [PATCH] Unused --- matlab/Randomizer.m | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 matlab/Randomizer.m diff --git a/matlab/Randomizer.m b/matlab/Randomizer.m deleted file mode 100644 index 58ea96b..0000000 --- a/matlab/Randomizer.m +++ /dev/null @@ -1,19 +0,0 @@ -classdef Randomizer - %Randomizer Internal class for random-number generation - % Matlab has its own random-number generators, but this class - % provides consistency with our Python and C++ SLAM implementations. - - properties (Access = 'private') - c_randomizer - end - - methods - - function r = Randomizer(seed) - r.c_randomizer = mex_coreslam('Randomizer_init', seed); - end - - end - -end -