KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
jaxinterp2d
★ 16
Open GitHub ↗
Bilinear interpolation on grids with jax
Download README (.md)
Explore Similar Repositories
ionic-anhembi-2021.1
:
All the code produced at the "Mobile Devices" lectures for the first semester of 2021 at Universidade Anhembi Morumbi
Steam
:
A Swift package to interact directly with Steam.
APK-Downloader
:
APK Downloader
VerifiablyRobustNN
:
No description available.
Blue-as-in-the-Year
:
A 3D game as a mode of storytelling.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
jaxinterp2d
?
Download (.md)
# jaxinterp2d Basic bilinear interpolation on grids with jax. This package provides a class `CartesianGrid` for data defined on a regular grid and `interp2d(x, y, xp, yp, zp)` for data on irregular grids. `CartesianGrid` is a jax clone of the class from [regulargrid](https://github.com/JohannesBuchner/regulargrid). ## Getting started Install by cloning the repository and running ```bash pip install . ``` You can install this directly via ```bash python -m pip install git+https://github.com/adam-coogan/jaxinterp2d.git@master ``` This will install jax and jaxlib if you don't already have them. The test requires numpy and can be run with `pytest`. Check them out for a usage example for `interp2d`. Note that `interp2d` does not do any bounds checking.