Skip to content
Snippets Groups Projects
Commit c28bd94c authored by Mark Jenkinson's avatar Mark Jenkinson
Browse files

Initial revision

parent 991c4258
No related branches found
No related tags found
No related merge requests found
quick.cc 0 → 100644
#include <iostream>
#include <fstream>
#include <iomanip>
#include <strstream>
#define WANT_STREAM
#define WANT_MATH
#include "miscmaths.h"
#include "libprob.h"
using namespace MISCMATHS;
int main(int argc, char *argv[])
{
try{
double p = MISCMATHS::fdtr(1.4449e+12, 1, 1);
OUT(p);
}
catch(Exception p_excp)
{
cerr << p_excp.what() << endl;
}
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment