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/common/matlab/reshapeMatrix.m | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 SD-VBS/common/matlab/reshapeMatrix.m (limited to 'SD-VBS/common/matlab/reshapeMatrix.m') diff --git a/SD-VBS/common/matlab/reshapeMatrix.m b/SD-VBS/common/matlab/reshapeMatrix.m deleted file mode 100755 index f355828..0000000 --- a/SD-VBS/common/matlab/reshapeMatrix.m +++ /dev/null @@ -1,13 +0,0 @@ -function [outputMatrix] = reshapeMatrix(inputMatrix, outputSize) - -inputDim = size(inputMatrix); -outputMatrix = zeros(outputSize(1), outputSize(2)); - -k = 1; - -for i = 1:outputSize(2) - for j = 1:outputSize(1) - outputMatrix(j, i) = inputMatrix(k); - k = k+1; - end -end \ No newline at end of file -- cgit v1.2.2