SciPy.jl

Build Status Stable Dev

A Julia interface for SciPy using PyCall.jl.

You can use many useful scientific functions of SciPy from Julia codes.

You can know which kind of functions are available in the SciPy Reference Guide.

Requirements

Julia 1.6 or higher.

Install

The package is tested against, and being developed for, Julia 1.6 and above on Linux, macOS, and Windows.

You can install this package with:

using Pkg;Pkg.add("SciPy")

and then just import it with using SciPy.

If you want use latest development code:

import Pkg; Pkg.add(Pkg.PackageSpec(name="SciPy", rev="master"))

How to use

You can check "Examples" sections for each scipy modules.

Index