IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
dataio.m
Go to the documentation of this file.
1 %> @brief Dataset loader/saver common class
2 classdef dataio < irobj
3  properties(Constant)
4  defaultrange = [1801.47, 898.81];
5  end
6 
7  properties
8  filename = '';
9  end;
10 
11  properties(SetAccess=protected)
12  flag_xaxis = 1;
13  end;
14 
15  methods
16  function o = dataio()
17  o.flag_params = 0;
18  end;
19  function data = load(filename, range)
20  end
21  function save(data, filename)
22  end
23  end
24 end
Dataset loader/saver common class.
Definition: dataio.m:2
Base class.
Definition: irobj.m:33