File tree 1 file changed +4
-4
lines changed
lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -129,15 +129,15 @@ for ( i = 0; i < x.length; i++ ) {
129
129
#include " stdlib/math/base/special/gamma_lanczos_sum.h"
130
130
```
131
131
132
- #### gamma_lanczos_sum ( x )
132
+ #### stdlib_base_gamma_lanczos_sum ( x )
133
133
134
134
Calculates the Lanczos sum for the approximation of the [ gamma function] [ gamma-function ] .
135
135
136
136
``` c
137
- double out = gamma_lanczos_sum ( 4.0 );
137
+ double out = stdlib_base_gamma_lanczos_sum ( 4.0 );
138
138
// returns ~950.366
139
139
140
- out = gamma_lanczos_sum ( -1.5 );
140
+ out = stdlib_base_gamma_lanczos_sum ( -1.5 );
141
141
// returns ~1373366.245
142
142
```
143
143
@@ -146,7 +146,7 @@ The function accepts the following arguments:
146
146
- ** x** : ` [in] double ` input value.
147
147
148
148
``` c
149
- double gamma_lanczos_sum ( const double x );
149
+ double stdlib_base_gamma_lanczos_sum ( const double x );
150
150
```
151
151
152
152
</section>
You can’t perform that action at this time.
0 commit comments