This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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++) | |
{ |