removed QWQNG, added stdin

This commit is contained in:
randogoth 2024-03-02 17:58:28 +02:00
commit 0fe369bc5a
39 changed files with 3095 additions and 0 deletions

11
RandTest/Stat.h Executable file
View file

@ -0,0 +1,11 @@
#pragma once
class CStat
{
public:
CStat(void);
~CStat(void);
// Calculate a p-value from a z-score
static double ZtoP(double zScore);
};