You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
333 B
Objective-C
17 lines
333 B
Objective-C
function lineType=plot_styles(method)
|
|
switch method
|
|
case {'DIM', 'DIMinv'}
|
|
lineType='r-x';
|
|
case {'ZNCC', 'ZNCCinv'}
|
|
lineType='b-s';
|
|
case 'BBS'
|
|
lineType='c-o';
|
|
case 'DDIS'
|
|
lineType='g-d';
|
|
case 'CoTM'
|
|
lineType='y-v';
|
|
otherwise
|
|
disp(['WARNING: unknown method; ',method])
|
|
lineType='k-d';
|
|
end
|
|
|