view matlab/db/dbread.m @ 14:e1f87438e34c

Work around for lock-up when used by triserver project. By god it's ugly but it seems to work.
author samer
date Thu, 02 Feb 2012 03:01:20 +0000
parents 0dd31a8c66bd
children
line wrap: on
line source
% dbread - Load values from ASCII file under matbase tree.
%
% dbread :: string -> A.
%
% This looks for a file given a path relative to the current
% matbase root as returned by dbroot. It then attempts to
% read it as an ASCII file using READ.

function x=dbread(file), x=read(fullfile(dbroot,file));