annotate matlab/db/dbread.m @ 37:89688ebc447f
tip
Deprecating this repository.
author |
samer |
date |
Mon, 05 Jan 2015 17:42:03 +0000 |
parents |
0dd31a8c66bd |
children |
|
rev |
line source |
samer@0
|
1 % dbread - Load values from ASCII file under matbase tree.
|
samer@0
|
2 %
|
samer@0
|
3 % dbread :: string -> A.
|
samer@0
|
4 %
|
samer@0
|
5 % This looks for a file given a path relative to the current
|
samer@0
|
6 % matbase root as returned by dbroot. It then attempts to
|
samer@0
|
7 % read it as an ASCII file using READ.
|
samer@0
|
8
|
samer@0
|
9 function x=dbread(file), x=read(fullfile(dbroot,file));
|
samer@0
|
10
|