From 25d94aa8aabb8ac3e8bbea0bc439ea6148444cc8 Mon Sep 17 00:00:00 2001 From: leochanj Date: Wed, 21 Oct 2020 01:52:54 -0400 Subject: debug libextra and remove matlab --- SD-VBS/common/matlab/fWriteMatrix.m | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 SD-VBS/common/matlab/fWriteMatrix.m (limited to 'SD-VBS/common/matlab/fWriteMatrix.m') diff --git a/SD-VBS/common/matlab/fWriteMatrix.m b/SD-VBS/common/matlab/fWriteMatrix.m deleted file mode 100644 index 3995aa6..0000000 --- a/SD-VBS/common/matlab/fWriteMatrix.m +++ /dev/null @@ -1,18 +0,0 @@ -function fWriteMatrix(input, inpath) - -file = [inpath '/expected.m']; -disp(file); -fd = fopen(file, 'w'); - -[rows, cols] = size(input); - -for j=1:rows - for i=1:cols - fprintf(fd, '%f\t', input(j,i)); - end - fprintf(fd, '\n'); -end -fclose(fd); -end - - -- cgit v1.2.2