IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
vis_alldata.m
Go to the documentation of this file.
1 %> @brief Visualization - All curves in dataset
2 classdef vis_alldata < vis
3  properties
4  %> =0. Whether to use plot_curve_pieces
5  %> This property is not editable in the GUI
6  flag_pieces = 0;
7  %> =0 If 0, will use one color inside the COLORS global per class.
8  %> If 1, will use one color inside the COLORS global per data row
9  flag_color_per_row = 0;
10  end;
11 
12  methods
13  function o = vis_alldata()
14  o.classtitle = 'All curves in dataset';
15  o.inputclass = 'irdata';
16  o.flag_params = 0;
17  end;
18  end;
19 
20  methods(Access=protected)
21  function out = do_use(o, obj)
22  out = [];
23  data_draw(obj, o.flag_pieces, o.flag_color_per_row);
24  make_box();
25  set_title(o.classtitle, obj);
26  end;
27  end;
28 end
function make_box()
Visualization - All curves in dataset.
Definition: vis_alldata.m:2
Dataset class.
Definition: irdata.m:30
Visualization base class.
Definition: vis.m:4
function plot_curve_pieces(in x, in y, in varargin)
function data_draw(in data, in flag_pieces, in flag_color_per_row)
function set_title(in s, in obj)