0001 function [listofgraphtypes,...
0002 listoflinestyles,listoflinewidths,listoflinecolors,...
0003 listofmarkerstyles,listofmarkersizes,listofmarkercolors]...
0004 = GetGraphProperties_jd;
0005
0006
0007
0008
0009
0010
0011
0012 listofgraphtypes{1} = 'xte';
0013 listofgraphtypes{2} = 'xne';
0014
0015
0016
0017 listoflinestyles{1} = '-';
0018 listoflinestyles{2} = '--';
0019 listoflinestyles{3} = ':';
0020 listoflinestyles{4} = '-.';
0021 listoflinestyles{5} = 'none';
0022
0023
0024
0025 listoflinewidths{1} = 0.5;
0026 listoflinewidths{2} = 1.0;
0027 listoflinewidths{3} = 2.0;
0028 listoflinewidths{4} = 3.0;
0029 listoflinewidths{5} = 4.0;
0030 listoflinewidths{6} = 6.0;
0031 listoflinewidths{7} = 8.0;
0032 listoflinewidths{8} = 10.0;
0033 listoflinewidths{9} = 15.0;
0034 listoflinewidths{10} = 20.0;
0035 listoflinewidths{11} = 25.0;
0036 listoflinewidths{12} = 30.0;
0037
0038
0039
0040 listoflinecolors{1} = [0,0,0];
0041 listoflinecolors{2} = [0,0,1];
0042 listoflinecolors{3} = [1,0,0];
0043 listoflinecolors{4} = [0,0.5,0];
0044 listoflinecolors{5} = [0,0.75,0.75];
0045
0046
0047
0048 listofmarkerstyles{1} = 'none';
0049 listofmarkerstyles{2} = 'o';
0050 listofmarkerstyles{3} = 'x';
0051 listofmarkerstyles{4} = '.';
0052 listofmarkerstyles{5} = 's';
0053
0054
0055
0056 listofmarkersizes{1} = 0.5;
0057 listofmarkersizes{2} = 1.0;
0058 listofmarkersizes{3} = 2.0;
0059 listofmarkersizes{4} = 3.0;
0060 listofmarkersizes{5} = 4.0;
0061 listofmarkersizes{6} = 6.0;
0062 listofmarkersizes{7} = 8.0;
0063 listofmarkersizes{8} = 10.0;
0064 listofmarkersizes{9} = 15.0;
0065 listofmarkersizes{10} = 20.0;
0066 listofmarkersizes{11} = 25.0;
0067 listofmarkersizes{12} = 30.0;
0068
0069
0070
0071 listofmarkercolors{1} = 'auto';
0072 listofmarkercolors{2} = [0,0,0];
0073 listofmarkercolors{3} = [0,0,1];
0074 listofmarkercolors{4} = [1,0,0];
0075 listofmarkercolors{5} = [0,0.5,0];
0076 listofmarkercolors{6} = [0,0.75,0.75];