js8call/getfile.cpp

11 lines
235 B
C++
Raw Normal View History

2018-02-08 21:28:33 -05:00
#include "getfile.h"
#include <random>
2024-08-31 09:40:28 -07:00
#include <QRandomGenerator>
2018-02-08 21:28:33 -05:00
/* Generate gaussian random float with mean=0 and std_dev=1 */
float gran()
{
static std::normal_distribution<float> d;
return d (*QRandomGenerator::global ());
2018-02-08 21:28:33 -05:00
}