From 0efc775370d2ff91927d1b383a99eab78dc5538f Mon Sep 17 00:00:00 2001 From: leochanj Date: Wed, 21 Oct 2020 01:52:54 -0400 Subject: debug libextra and remove matlab FLUSH_CACHES --- SD-VBS/benchmarks/texture_synthesis/src/matlab/mod.m | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 SD-VBS/benchmarks/texture_synthesis/src/matlab/mod.m (limited to 'SD-VBS/benchmarks/texture_synthesis/src/matlab/mod.m') diff --git a/SD-VBS/benchmarks/texture_synthesis/src/matlab/mod.m b/SD-VBS/benchmarks/texture_synthesis/src/matlab/mod.m deleted file mode 100755 index 21167e5..0000000 --- a/SD-VBS/benchmarks/texture_synthesis/src/matlab/mod.m +++ /dev/null @@ -1,14 +0,0 @@ -% M = mod(A,B) -% -% Modulus operator: returns A mod B. -% Works on matrics, vectors or scalars. -% -% NOTE: This function is a Matlab-5 builtin, but was missing from Matlab-4. - -% Eero Simoncelli, 7/96. - -function m = mod(a,n) - -m = a - n .* floor(a./n); -return; - -- cgit v1.2.2