Skip to content

Commit

Permalink
update readme vals
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelSlevinsky committed Jul 6, 2023
1 parent df46b74 commit 7488b50
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ julia> pFq((1, ), (2, ), 0.01) # ≡ expm1(0.01)/0.01
1.0050167084168058

julia> pFq((1/3, ), (2/3, ), -1000) # ₁F₁
0.05055805394644902
0.050558053946448994

julia> pFq((1, 2), (4, ), 1) # a well-poised ₂F₁
2.9999999999999996

julia> pFq((1, 2+im), (3.5, ), exp(im*π/3)) # ₂F₁ at that special point in ℂ
0.6786952632946589 + 0.45235049292850116im
0.6786952632946587 + 0.45235049292850116im

julia> pFq((1, 2+im), (3.5, ), exp(im*big(π)/3)) # More digits, you say?
0.6786952632946589823300834090168381068073515492901393549193461972311801512528478 + 0.4523504929285013648194489713901658143893464679689810112119412310631860619948458im
0.6786952632946589823300834090168381068073515492901393549193461972311801512528996 + 0.4523504929285013648194489713901658143893464679689810112119412310631860619947939im

julia> pFq((1, 2+im, 2.5), (3.5, 4), exp(im*π/3)) # ₃F₂ because why not
0.8434434031615688 + 0.3417550761546319im
Expand All @@ -37,9 +37,9 @@ julia> pFq((1, 2+im, 2.5), (3.5, 4), exp(im*big(π)/3)) # Also in extended preci
0.8434434031615690763389963048175253868863156451003855955719081209861492349266966 + 0.34175507615463197326144956567125097230303506665711024742993111225869481084123im

julia> pFq((1, 1), (), -1) # A divergent series
0.5963473623231935
0.5963473623231942

julia> pFq((1, 1), (), -big(1))
0.5963473623231940743410784993692793760741778601525487815734849104823272191158165
0.5963473623231940743410784993692793760741778601525487815734849104823272191142015

```

0 comments on commit 7488b50

Please sign in to comment.