Code covered by the BSD License  

Highlights from
Customize your matlab startup

image thumbnail
from Customize your matlab startup by Tijil Thomas
Now customize your MATLAB start up and make it more beautifull!!!!!!!!!!!!!!.

startup.m
% Author: Tijil Thomas
% Company : TATA ELXSI LTD


fh = matlab_start;

f = findall(fh,'Tag','disp1');
pos = get(f,'Position');
pos(3)= 15;
set(f,'Position',pos);
pos = get(f,'Position');
for icount = 1:100
    pause(0.1);
    pos(3) = pos(3)+10;
    if  (pos(3) > 150)
        pos(3) = 15;
    end
    set(f, 'Position', pos);
end

close(fh);

clc;
%%
% now wright the lines here which you want to display when thte matlab
% starts

% add any commands that you want executed automatically whenever you start
% up Matlab 
fprintf('Starting Matlab\n');
fprintf('Enjoy!!!!!!!!!!!!!!!! the thrill of technical computation\n');
fprintf('STARTING MY MATLAB Yahooooo!!!!!\n');
fprintf('Start');


Contact us at files@mathworks.com