# Equivalent of hyp2f1 in Julia

**URL:** https://discourse.julialang.org/t/equivalent-of-hyp2f1-in-julia/80674
**Category:** General Usage
**Tags:** question
**Created:** [May 7, 2022, 3:15pm UTC](https://discourse.julialang.org/t/equivalent-of-hyp2f1-in-julia/80674 "2022-05-07T15:15:59Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![ufechner7](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/ufechner7/32/51363_2.png) [@ufechner7](https://discourse.julialang.org/u/ufechner7)
#### Post date: [May 7, 2022, 3:15pm UTC](https://discourse.julialang.org/t/equivalent-of-hyp2f1-in-julia/80674/1 "2022-05-07T15:15:59Z")

</div>

I am translating some Python code to Julia that uses the SciPy function hyp2f1.  
What would be the equivalent function in Julia?

[https://docs.scipy.org/doc/scipy/reference/generated/scipy.special.hyp2f1.html](https://docs.scipy.org/doc/scipy/reference/generated/scipy.special.hyp2f1.html)

---

<div class="post-metadata">

### Author: ![Oscar\_Smith](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/oscar_smith/32/25343_2.png) [@Oscar\_Smith](https://discourse.julialang.org/u/Oscar_Smith)
#### Post date: [May 7, 2022, 3:19pm UTC](https://discourse.julialang.org/t/equivalent-of-hyp2f1-in-julia/80674/2 "2022-05-07T15:19:27Z")

</div>

`HyperGeometricFunctions.jl`

---

<div class="post-metadata">

### Author: ![ufechner7](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/ufechner7/32/51363_2.png) [@ufechner7](https://discourse.julialang.org/u/ufechner7)
#### Post date: [May 7, 2022, 3:22pm UTC](https://discourse.julialang.org/t/equivalent-of-hyp2f1-in-julia/80674/3 "2022-05-07T15:22:32Z")

</div>

Thank you. I will try:

```julia
using HyperGeometricFunctions
_₂F₁(a, b; c; z)

```
