-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplot_histc_SETTINGS.m
More file actions
67 lines (66 loc) · 3.36 KB
/
plot_histc_SETTINGS.m
File metadata and controls
67 lines (66 loc) · 3.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
% plot_hist_settings
%
% ***********************************************************************
% *** DEFAULT PARAMETER SETTINGS FOR plot_hist DATA PLOTTING ************
% ***********************************************************************
%
% Edit this file directly for additional user settings:
% NOTE: CONFIGURATION PATHS *MUST* BE CORRECT
% NOTE: QUESTIONS HAVE CAN TAKE 'n' OR 'y' AS VALID SETTINGS
%
% CONFIGURATION PATHS
% par_pathin = 'cgenie_output'; relative location results directories
% par_pathout = 'PLOTS'; relative location for output
% par_pathdata = 'DATA'; relative location of data
% DATA PROCESSING
% data_normalize = false;normalize data (as a % of all occurrences)
% data_truncate = true; truncate data set at bin limits
% COLOR AND SCALING
% data_colobar=''; colorbar color scale name
% data_colorbar_inv=true;Invert colorbar colors?
% axis_xmin = 0.0; min plotted x value
% axis_xmax = 0.0; max plotted x value
% axis_ymin = 0.0; min plotted y value
% axis_ymax = 0.0; max plotted y value
% PLOT FORMAT AND DIMENSIONS
% plot_format_old=true; Choose 'old' style plotting?
% ('new' plotting (false) requires additional
% Windows library resources)
% plot_format = ''; Format of 'new' syle plot (if above is 'y')
% options: 'jpg', 'png', 'eps'
% 'pngT' adds transparency to png
% plot_dataname_1 = ''; Optional replacement x-axis (data 1) label
% (empty '' for default label)
% plot_dataname_2 = ''; Optional replacement z-axis (data 2) label
% (empty '' for default label)
% plot_title = ''; Optional replacement title
% (empty '' for default title)
% plot_dscrsz = 0.60; Fraction of screen size of plotting window
% OPTIONAL ADDITIONAL PATHS [SEE USER MANUAL]
%
% ***********************************************************************
% *********************************************************************** %
% *** USER SETTINGS ***************************************************** %
% *********************************************************************** %
%
% PARAMATER % DEFAULT BRIEF DESCRIPTION [SEE ABOVE]
par_pathin = 'cgenie_output'; % [ 'cgenie_output']
par_pathout = 'PLOTS';
par_pathdata = 'DATA';
data_normalize = false; % [true] NORMALIZE DATA
data_truncate = true; % [true] TRUNCATE DATA
colorbar_name='parula'; % ['parula'] COLORBAR COLOR SCALE NAME
colorbar_inv=true; % [true] INVERT COLORBAR
colobar_data=''; % ['']
axis_xmin = 0.0; % [ 0.0] x PLOTTING MINIMUM
axis_xmax = 0.0; % [ 0.0] x PLOTTING MAXIMUM
axis_ymin = 0.0; % [ 0.0] y PLOTTING MINIMUM
axis_ymax = 0.0; % [ 0.0] y PLOTTING MAXIMUM
plot_format_old = true; % [true] 'OLD' STYLE PLOTTING
plot_format = ''; % [ ''] FORMAT OF (NEW STYLE) PLOT
plot_dataname_1 = ''; % [ ''] DATA LABEL 1
plot_dataname_2 = ''; % [ ''] DATA LABEL 2
plot_title = ''; % [ ''] OPTIONAL REPLACEMENT TITLE
plot_dscrsz = 0.60; % [0.60] FRACTIONAL FIGURE WINDOW SIZE
%
% *********************************************************************** %