Upped the number of sample vectors to 10000.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403148
This commit is contained in:
Davis King 2009-08-05 00:11:50 +00:00
parent 381230a58f
commit 3b6f3f2014
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ int main()
// Now lets go into a loop and randomly generate 1000 samples.
srand(time(0));
for (int i = 0; i < 1000; ++i)
for (int i = 0; i < 10000; ++i)
{
// Make a random sample vector.
sample = randm(2,1)*40 - center;