{"id":17113016,"url":"https://github.com/emmt/linearinterpolators.jl","last_synced_at":"2025-10-15T09:40:56.907Z","repository":{"id":46397655,"uuid":"131758067","full_name":"emmt/LinearInterpolators.jl","owner":"emmt","description":"Linear maps for interpolation in Julia","archived":false,"fork":false,"pushed_at":"2024-05-02T16:54:24.000Z","size":619,"stargazers_count":6,"open_issues_count":6,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-23T22:34:45.181Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/emmt.png","metadata":{"files":{"readme":"README.md","changelog":"NEWS.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-05-01T20:09:54.000Z","updated_at":"2022-05-31T06:59:14.000Z","dependencies_parsed_at":"2025-03-23T22:29:27.369Z","dependency_job_id":"7f10817e-beb1-4135-b02c-b72c919def27","html_url":"https://github.com/emmt/LinearInterpolators.jl","commit_stats":{"total_commits":225,"total_committers":4,"mean_commits":56.25,"dds":"0.022222222222222254","last_synced_commit":"1fcb248a4ad005981f71ee47005a151fcbd4cf00"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmt%2FLinearInterpolators.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmt%2FLinearInterpolators.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmt%2FLinearInterpolators.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmt%2FLinearInterpolators.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emmt","download_url":"https://codeload.github.com/emmt/LinearInterpolators.jl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248107874,"owners_count":21049025,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-14T17:02:18.997Z","updated_at":"2025-10-15T09:40:51.869Z","avatar_url":"https://github.com/emmt.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LinearInterpolators\n\n[![Doc. Dev][doc-dev-img]][doc-dev-url]\n[![License][license-img]][license-url]\n[![Build Status][github-ci-img]][github-ci-url]\n[![Build Status][appveyor-img]][appveyor-url]\n[![Coverage][codecov-img]][codecov-url]\n\nThe `LinearInterpolators` package provides many linear interpolation methods\nfor [Julia][julia-url].  These interpolations are *linear* in the sense\nthat the result depends linearly on the input.\n\nThe documentation for the master version is [here][doc-dev-url].\n\n\n## Features\n\n* Separable interpolations are supported for arrays of any dimensionality.\n  Interpolation kernels can be different along each interpolated dimension.\n\n* For 2D arrays, interpolations may be separable or not (*e.g.* to apply an\n  image rotation).\n\n* Undimensional interpolations may be used to produce multi-dimensional\n  results.\n\n* Many interpolation kernels are provided by the package\n  [`InterpolationKernels`](https://github.com/emmt/InterpolationKernels.jl)\n  (B-splines of degree 0 to 3, cardinal cubic splines, Catmull-Rom spline,\n  Mitchell \u0026 Netravali spline, Lanczos resampling kernels of arbitrary size,\n  *etc.*).\n\n* **Interpolators** are linear maps such as the ones defined by the\n  [`LazyAlgebra`](https://github.com/emmt/LazyAlgebra.jl) framework.\n\n  - Applying the adjoint of interpolators is fully supported.  This can be\n    exploited for iterative fitting of data given an interpolated model.\n\n  - Interpolators may have coefficients computed *on the fly* or tabulated\n    (that is computed once).  The former requires almost no memory but can be\n    slower than the latter if the same interpolation is applied more than once.\n\n\n## Installation\n\nThe easiest way to install `LinearInterpolators` is via Julia's package manager:\n\n```julia\nusing Pkg\npkg\"add LinearInterpolators\"\n```\n\n[doc-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg\n[doc-stable-url]: https://emmt.github.io/LinearInterpolators.jl/stable\n\n[doc-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg\n[doc-dev-url]: https://emmt.github.io/LinearInterpolators.jl/dev\n\n[license-url]: ./LICENSE.md\n[license-img]: http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat\n\n[github-ci-img]: https://github.com/emmt/LinearInterpolators.jl/actions/workflows/CI.yml/badge.svg?branch=master\n[github-ci-url]: https://github.com/emmt/LinearInterpolators.jl/actions/workflows/CI.yml?query=branch%3Amaster\n\n[appveyor-img]: https://ci.appveyor.com/api/projects/status/github/emmt/LinearInterpolators.jl?branch=master\n[appveyor-url]: https://ci.appveyor.com/project/emmt/LinearInterpolators-jl/branch/master\n\n[codecov-img]: http://codecov.io/github/emmt/LinearInterpolators.jl/coverage.svg?branch=master\n[codecov-url]: http://codecov.io/github/emmt/LinearInterpolators.jl?branch=master\n\n[julia-url]: https://julialang.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femmt%2Flinearinterpolators.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femmt%2Flinearinterpolators.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femmt%2Flinearinterpolators.jl/lists"}