summaryrefslogtreecommitdiffstats
path: root/SD-VBS/common/matlab/fWriteMatrix.m
diff options
context:
space:
mode:
authorleochanj <jbakita@cs.unc.edu>2020-10-21 01:52:54 -0400
committerleochanj <jbakita@cs.unc.edu>2020-10-21 15:59:54 -0400
commit0efc775370d2ff91927d1b383a99eab78dc5538f (patch)
treea41fe470fee5adc4d944ecd6b917bc48df8c7e0f /SD-VBS/common/matlab/fWriteMatrix.m
parente2b50015cebdfba68699abd6e8575e38230f5a78 (diff)
debug libextra and remove matlab
FLUSH_CACHES
Diffstat (limited to 'SD-VBS/common/matlab/fWriteMatrix.m')
-rw-r--r--SD-VBS/common/matlab/fWriteMatrix.m18
1 files changed, 0 insertions, 18 deletions
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 @@
1function fWriteMatrix(input, inpath)
2
3file = [inpath '/expected.m'];
4disp(file);
5fd = fopen(file, 'w');
6
7[rows, cols] = size(input);
8
9for j=1:rows
10 for i=1:cols
11 fprintf(fd, '%f\t', input(j,i));
12 end
13 fprintf(fd, '\n');
14end
15fclose(fd);
16end
17
18