rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
rbmatlabinput.m
1 function tmpstr = rbmatlabinput
2 % function tmpstr = rbmatlabinput
3 %
4 % function returning the home environment variable at which the
5 % large space for input data (data that has been generated by previous
6 % executions) is available
7 
8 
9 tmpstr = getenv('RBMATLABINPUT');
10 if isempty(tmpstr) || ~exist(tmpstr, 'dir')
11  tmpstr = rbmatlabresult;
12 end
13 
14