Mercurial > hg > ltpda
comparison m-toolbox/classes/+utils/@plottools/xticks.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % XTICKS set the input vector as the x-ticks of the current axis. | |
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
3 % | |
4 % DESCRIPTION: XTICKS set the input vector as the x-ticks of the current | |
5 % axis. | |
6 % | |
7 % CALL: xticks(v) | |
8 % | |
9 % VERSION: $Id: xticks.m,v 1.1 2008/08/05 17:51:32 ingo Exp $ | |
10 % | |
11 % HISTORY: 10-08-2006 M Hewitson | |
12 % Creation | |
13 % | |
14 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
15 | |
16 function xticks(v) | |
17 | |
18 set(gca, 'Xtick', v); | |
19 | |
20 end | |
21 |