echo off
% This is the STARTUP.M file. It is executed automatically at the beginning
% of each MATLAB session.

% Set czech figure description
font='Arial CE'; fontsize = 12; fontweight = 'bold';
% v4colset; % set default colors as in MATLAB ver. 4
set(0,'DefaultAxesFontName',font);
set(0,'DefaultAxesFontSize',fontsize);
set(0,'DefaultAxesFontWeight',fontweight);
set(0,'DefaultTextFontName',font);
set(0,'DefaultTextFontSize',fontsize);
set(0,'DefaultTextFontWeight',fontweight);
% Nastaveni tiskovych papametru obrazku:
set(0,'DefaultFigurePaperUnits','normalized');
set(0,'DefaultFigurePaperType','A4');
% Nefunguje dobre ?
% set(0,'DefaultFigurePaperPosition',[0.02 0.2 0.9 0.3]);
% set(0,'DefaultFigurePaperPositionMode','manual');
clear font fontsize fontweight;

% Update MATALABPATH according to the local MATLAB
addpath('Z:\matlab\work',[MVSpath,'\MATLABtutorial']);
cd z:\matlab

disp('CURRENT DIRECTORY:');
disp(pwd);
dir;