IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
uip_dataio_txt_basic_image.m
Go to the documentation of this file.
1 %> @ingroup guigroup
2 %> @file
3 %> @brief Properties Windows for @ref dataio_txt_basic_image
4 %>
5 %> Calls uip_dataio_txt_basic.m followed by uip_dataio_txt_dpt.m.
6 %> Input arguments are expected to be a dataio object only. This is passed to uip_dataio_txt_dpt.m only
7 %> @cond
8 function result = uip_dataio_txt_basic_image(varargin)
9 result.flag_ok = 0;
10 while 1
11  if result.flag_ok
12  break;
13  end;
14 
15  r = uip_dataio_txt_basic();
16  if ~r.flag_ok
17  break;
18  end;
19  result.params = r.params;
20 
21  p = uip_dataio_txt_dpt(varargin{:});
22  if r.flag_ok
23  result.params = [result.params, p.params];
24  result.flag_ok = 1;
25  break;
26  end;
27 end;
28 %>@endcond
Dataset loader/saver common class.
Definition: dataio.m:2
Derives from dataio_txt_basic to match uip_dataio_txt_basic.m.