Skip to content

feat: add C implementation for stats/base/dists/chi/mean #4514

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Apr 30, 2025
Merged
Prev Previous commit
Next Next commit
chore: update example printout
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
  • Loading branch information
Planeshifter authored Apr 30, 2025
commit 44ef1e2cc7e5463b2009580a974209b70ecc8caa
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ int main( void ) {
for ( i = 0; i < 25; i++ ) {
k = random_uniform( 1.0, 10.0 );
y = stdlib_base_dists_chi_mean( k );
printf( "k: %lf, mean(k): %lf\n", k, y );
printf( "k: %lf, E(X,k): %lf\n", k, y );
}
}
Loading