File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum-expg-scaled Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -142,15 +142,15 @@ for ( i = 0; i < x.length; i++ ) {
142
142
#include " stdlib/math/base/special/gamma_lanczos_sum_expg_scaled.h"
143
143
```
144
144
145
- #### gamma_lanczos_sum_expg_scaled ( x )
145
+ #### stdlib_base_gamma_lanczos_sum_expg_scaled ( x )
146
146
147
147
Calculates the Lanczos sum for the approximation of the [ gamma function] [ gamma-function ] (scaled by ` exp(-g) ` , where ` g = 10.900511 ` ).
148
148
149
149
``` c
150
- double out = gamma_lanczos_sum_expg_scaled ( 4.0 );
150
+ double out = stdlib_base_gamma_lanczos_sum_expg_scaled ( 4.0 );
151
151
// returns ~0.018
152
152
153
- out = gamma_lanczos_sum_expg_scaled ( -1.5 );
153
+ out = stdlib_base_gamma_lanczos_sum_expg_scaled ( -1.5 );
154
154
// returns ~25.337
155
155
```
156
156
@@ -159,7 +159,7 @@ The function accepts the following arguments:
159
159
- ** x** : ` [in] double ` input value.
160
160
161
161
``` c
162
- double gamma_lanczos_sum_expg_scaled ( const double x );
162
+ double stdlib_base_gamma_lanczos_sum_expg_scaled ( const double x );
163
163
```
164
164
165
165
</section>
You can’t perform that action at this time.
0 commit comments