Commit 3b6f3f20 authored by Davis King's avatar Davis King

Upped the number of sample vectors to 10000.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403148
parent 381230a5
...@@ -69,7 +69,7 @@ int main() ...@@ -69,7 +69,7 @@ int main()
// Now lets go into a loop and randomly generate 1000 samples. // Now lets go into a loop and randomly generate 1000 samples.
srand(time(0)); srand(time(0));
for (int i = 0; i < 1000; ++i) for (int i = 0; i < 10000; ++i)
{ {
// Make a random sample vector. // Make a random sample vector.
sample = randm(2,1)*40 - center; sample = randm(2,1)*40 - center;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment