From: us on
"Samoline1 Linke" <maganatewoman(a)yahoo.com> wrote in message <hmr6am$l79$1(a)fred.mathworks.com>...
> Yes that's exactly my question is ..... how to change the xtick property?

but... in your OP you asked for the WIDTH(?)...

one of the solutions
- to make axes look identical...

line(0:10:100,rand(11,1),'marker','s');
set(gca,'position',[.2,.2,.5,.5]); % <- same width of axis on figure...
set(gca,'xtick',0:20:100); % <- same XTICKs...
set(gca,'xticklabel',0:20:100); % <- same XTICKLABELs...

us