-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTRacer.m
More file actions
38 lines (27 loc) · 813 Bytes
/
TRacer.m
File metadata and controls
38 lines (27 loc) · 813 Bytes
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
%% TRacer
%
% TIRF Image Analysis Software Suite
%
%%
function TRacer()
%% Prepare GUI and Functions
profile on;
cd(fileparts(mfilename('fullpath'))); % Change working folder to TRacer location
addpath(genpath('./functions')); % Add subfolders to paths
global T; % just for debugging purposes
T = TRACERdata; % create empty TRACERdata class
clc;
logo('2016/8');
end
function logo(ver)
disp(char(10));
disp([' _________ ..................',char(10162)]);
disp('/_ __/ _ \___ ________ ____');
disp(' / / / , _/ _ `/ __/ -_) __/');
disp('/_/ /_/|_|\_,_/\__/\__/_/ ');
disp('Single Molecule Image Analysis');
fprintf('\n');
disp([char(169),' B.Salem | AK Lamb | LMU Munich',char(10),' v',ver]);
disp(repmat(char(183),1,40));
fprintf('\n\n');
end