squiggle.c/examples/16_100_lognormal_samples/example.c

18 lines
362 B
C
Raw Normal View History

2023-11-17 20:48:23 +00:00
#include "../../squiggle.h"
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
// Estimate functions
int main(){
// set randomness seed
uint64_t* seed = malloc(sizeof(uint64_t));
*seed = 1000; // xorshift can't start with 0
for(int i=0; i<100; i++){
double sample = sample_lognormal(0,10, seed);
printf("%f\n", sample);
}
free(seed);
}