[Home]Marshmallow/MovementProfile

Robo Home | Marshmallow | Changes | Preferences | AllPages

No diff available--this is the first major revision. (minor diff, author diff)
Inside DuelistMicroMkII is a logging function that can output a file containg the Wave statistics. I'm hoping David will write about it on the DuelistMovementProfiler? page. David provides an Excel sheet where you can process the data and get a graph on your movement profile. However, the macro doesn't work on my Excel so I wrote an awk script that chews the file instead:
#!/sw/bin/awk -f
BEGIN { FS="'"; getline }
{
    a[int($1 * 10)]++
}
END {
    for (j = -16; j < 17; j++) {
        print j / 10 "\t" a[j]
    }
}
(Your path to awk might differ. And if you're on Windows you'll need a different interpreter selector alltogether.)

After a 100 round match the output, after filtering through the above script, looks like this:

-0.8    
-0.7    2
-0.6    34
-0.5    81
-0.4    110
-0.3    132
-0.2    161
-0.1    168
0       385
0.1     192
0.2     175
0.3     144
0.4     155
0.5     181
0.6     69
0.7     20
0.8     
It looks like firing straight at Marshmallow is still a pretty good idea. -- PEZ

Robo Home | Marshmallow | Changes | Preferences | AllPages
Edit text of this page | View other revisions
Last edited March 3, 2003 8:21 EST by Crippa (diff)
Search: