September 2017 Update
This commit is contained in:
parent
bba7bfd280
commit
ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions
5
Task/Gamma-function/Jq/gamma-function-3.jq
Normal file
5
Task/Gamma-function/Jq/gamma-function-3.jq
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
def gamma_by_stirling:
|
||||
def pow(x): if x == 0 then 1 elif x == 1 then . else x * log | exp end;
|
||||
((1|atan) * 8) as $twopi
|
||||
| . as $x
|
||||
| (($twopi/$x) | sqrt) * ( ($x / (1|exp)) | pow($x));
|
||||
Loading…
Add table
Add a link
Reference in a new issue