1function reset_rand
2%RESET_RAND resets the state of rand
3%
4% Example
5%   reset_rand
6%
7% See also RandStream, rand, rng
8
9% Copyright 2011-2012, Timothy A. Davis, http://www.suitesparse.com
10
11if (verLessThan ('matlab', '7.12'))
12    rand ('seed', 0) ;                                                      %#ok
13else
14    rng ('default') ;
15end
16