Skip to content

Commit

Permalink
Updated Initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
frankNiessen committed May 14, 2020
1 parent c3af66c commit 9c748cb
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions main.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@
% A license file is provided in the root directory of the program
% -------------------------------------------------------------------------
%% Startup
clc; clear all; close all; clear hidden; fclose('all');
clc; clear vars; close all; clear hidden; fclose('all');
scrPrnt('StartUp','PTMC analysis');
try MTEXmenu; catch; startup_mtex; end % Startup m-tex
try
startup_mtex % Startup m-tex
catch ME
warning('You may not have MTEX properly installed');
rethrow(ME);
end
%% Defining crystal structures
scrPrnt('SegmentStart','Initialization');
% Load parent crystal structure
Expand Down

0 comments on commit 9c748cb

Please sign in to comment.