Mercurial > hg > mauch-mirex-2010
view _FullBNT/KPMtools/myrand.m @ 9:4ea6619cb3f5 tip
removed log files
author | matthiasm |
---|---|
date | Fri, 11 Apr 2014 15:55:11 +0100 |
parents | b5b38998ef3b |
children |
line wrap: on
line source
function T = myrand(sizes) % MYRAND Like the built-in rand, except myrand(k) produces a k*1 vector instead of a k*k matrix, % T = myrand(sizes) if length(sizes)==0 warning('myrand[]'); T = rand(1,1); elseif length(sizes)==1 T = rand(sizes, 1); else T = rand(sizes); end