Skip to content

Commit 94c8f94

Browse files
chore: add variable symbols
Co-authored-by: Philipp Burckhardt <[email protected]> Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 538a337 commit 94c8f94

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/gamma/logpdf/examples/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/gamma/logpdf/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ int main( void ) {
3737
alpha = random_uniform( 0.0, 20.0 );
3838
beta = random_uniform( 0.0, 20.0 );
3939
y = stdlib_base_dists_gamma_logpdf( x, alpha, beta );
40-
printf( "x: %lf, alpha: %lf, beta: %lf, LogPdf(X;x,alpha,beta): %lf\n", x, alpha, beta, y );
40+
printf( "x: %lf, α: %lf, β: %lf, ln(f(x;α,β)):: %lf\n", x, alpha, beta, y );
4141
}
4242
}

0 commit comments

Comments
 (0)