diff options
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 | |||