Skip to content

Instantly share code, notes, and snippets.

View SwampDragons's full-sized avatar

Megan Marsh SwampDragons

View GitHub Profile
@SwampDragons
SwampDragons / gist:1435956
Created December 5, 2011 23:46 — forked from chrisgilmerproj/gist:1435738
Simple mode code
void mode(float *s, int count)
{
int c_new=0;
int c_old=0;
float mode_new=0.0;
float mode_old=0.0;
float num;
int i;
for(i=0; i<count; i++)
{