diff options
author | leochanj105 <leochanj@live.unc.edu> | 2020-10-20 03:47:33 -0400 |
---|---|---|
committer | leochanj105 <leochanj@live.unc.edu> | 2020-10-20 03:47:33 -0400 |
commit | a32f220f06cc463e5b56e7fa0b1b1334d94d08f3 (patch) | |
tree | 4af4caa60074465d85fc2ef5cc1b23e74c064329 /SD-VBS/common/matlab/fWriteMatrix.m | |
parent | 79f30887129145e15e5172e36a7d7602859fc932 (diff) |
matlab removed
Diffstat (limited to 'SD-VBS/common/matlab/fWriteMatrix.m')
-rw-r--r-- | SD-VBS/common/matlab/fWriteMatrix.m | 18 |
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 @@ | |||
1 | function fWriteMatrix(input, inpath) | ||
2 | |||
3 | file = [inpath '/expected.m']; | ||
4 | disp(file); | ||
5 | fd = fopen(file, 'w'); | ||
6 | |||
7 | [rows, cols] = size(input); | ||
8 | |||
9 | for j=1:rows | ||
10 | for i=1:cols | ||
11 | fprintf(fd, '%f\t', input(j,i)); | ||
12 | end | ||
13 | fprintf(fd, '\n'); | ||
14 | end | ||
15 | fclose(fd); | ||
16 | end | ||
17 | |||
18 | |||