2023-07-23 17:11:25 +00:00
|
|
|
#include "../../squiggle.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
// Estimate functions
|
|
|
|
double beta_1_2_sampler(uint64_t* seed){
|
|
|
|
return sample_beta(1, 2.0, seed);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// set randomness seed
|
|
|
|
uint64_t* seed = malloc(sizeof(uint64_t));
|
|
|
|
*seed = 1000; // xorshift can't start with 0
|
|
|
|
|
2023-11-18 18:51:34 +00:00
|
|
|
ci beta_1_2_ci_90 = get_90_confidence_interval(beta_1_2_sampler, seed);
|
2023-07-23 17:11:25 +00:00
|
|
|
printf("90%% confidence interval of beta(1,2) is [%f, %f]\n", beta_1_2_ci_90.low, beta_1_2_ci_90.high);
|
|
|
|
|
|
|
|
free(seed);
|
|
|
|
}
|