IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
blmisc_image_transpose.m
Go to the documentation of this file.
1 %> @brief Switches direction between 'hor' or 'ver'
3  methods
4  function o = blmisc_image_transpose(o)
5  o.classtitle = 'Transpose';
6  o.flag_ui = 1;
7  o.flag_params = 0;
8  end;
9  end;
10 
11  methods(Access=protected)
12  function data = do_use(o, data)
13  data = data.transpose2();
14  end;
15  end;
16 
17 end
18 
Image operations base class.
Definition: blmisc_image.m:2
Switches direction between 'hor' or 'ver'.