Skip to content

Instantly share code, notes, and snippets.

View chrislupo's full-sized avatar

Chris Lupo chrislupo

View GitHub Profile
@iondune
iondune / histdiff.c
Created November 20, 2013 02:56
QND tool for comparing two histograms of equal and known bin count.
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv[])
{
if (argc != 4)
{
fprintf(stderr, "usage: histdiff <size> <file1> <file2>\n");
return -1;
}