interp1d.jl
A Julia package for univariate interpolation
Science Score: 31.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.8%) to scientific vocabulary
Keywords
Repository
A Julia package for univariate interpolation
Basic Info
- Host: GitHub
- Owner: AtsushiSakai
- License: mit
- Language: Julia
- Default Branch: master
- Homepage: https://atsushisakai.github.io/Interp1d.jl/stable
- Size: 1.21 MB
Statistics
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 0
Topics
Metadata Files
README.md
Interp1d
A Julia package for univariate interpolations.
This package is inspired by scipy.interpolate.interp1d function.
Requirements
Julia 1.6.x or higher.
Install
If you want use latest development version,
jl
using Pkg;Pkg.add(url = "https://github.com/AtsushiSakai/Interp1d.jl.git")
How to use
You can use many kind of univariate interpolations:
jl
using Interp1d
using PyPlot
xi = collect(0.0:10.0) # x of interpolated points
yi = exp.(-xi./3.0) # y of interpolated points
x = collect(-1.0:0.1:11.0) # sampling points
for mode in INTERP_MODE_LIST # Do interpolations for all modes.
f = interp(xi, yi, mode) # get an interpolation function
y = f.(x) # Do interpolation
plot(x, y, label=string(mode))
end
plot(xi, yi, "xr")
legend()

Details and other tips can be found in the latest documentaion:
Author
Owner
- Name: Atsushi Sakai
- Login: AtsushiSakai
- Kind: user
- Location: Kanagawa, Japan
- Website: https://atsushisakai.github.io/
- Twitter: Atsushi_twi
- Repositories: 207
- Profile: https://github.com/AtsushiSakai
An autonomous navigation system engineer, and an OSS developer of #PythonRobotics and #SciPy etc. Japanese web page maintainer of #NumPy
Citation (CITATION.bib)
@misc{Interp1d.jl,
author = {Atsushi Sakai <asakai.amsl+github@gmail.com> and contributors},
title = {Interp1d.jl},
url = {https://github.com/AtsushiSakai/Interp1d.jl},
version = {v0.1.0},
year = {2021},
month = {3}
}
GitHub Events
Total
Last Year
Committers
Last synced: over 1 year ago
Top Committers
| Name | Commits | |
|---|---|---|
| Atsushi Sakai | a****b@g****m | 24 |
Issues and Pull Requests
Last synced: 11 months ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- actions/cache v1 composite
- actions/checkout v2 composite
- julia-actions/julia-buildpkg v1 composite
- julia-actions/julia-runtest v1 composite
- julia-actions/setup-julia v1 composite
- JuliaRegistries/TagBot v1 composite