{"id":17113091,"url":"https://github.com/emmt/fineshift.jl","last_synced_at":"2026-03-18T23:25:12.851Z","repository":{"id":71510230,"uuid":"195053773","full_name":"emmt/FineShift.jl","owner":"emmt","description":"Fast sub-sample shift of multi-dimensional arrays in Julia","archived":false,"fork":false,"pushed_at":"2023-07-15T06:33:15.000Z","size":40,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-29T06:48:19.240Z","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":null,"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":"2019-07-03T12:57:50.000Z","updated_at":"2022-05-12T06:48:36.000Z","dependencies_parsed_at":"2024-12-01T02:41:13.934Z","dependency_job_id":"2245e65b-0c1e-4624-b691-7031ac5e2c64","html_url":"https://github.com/emmt/FineShift.jl","commit_stats":{"total_commits":42,"total_committers":1,"mean_commits":42.0,"dds":0.0,"last_synced_commit":"1611dafe49fb26c702c2d3bf644699cad864d014"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmt%2FFineShift.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmt%2FFineShift.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmt%2FFineShift.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmt%2FFineShift.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emmt","download_url":"https://codeload.github.com/emmt/FineShift.jl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245186653,"owners_count":20574551,"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:58.624Z","updated_at":"2026-01-04T23:06:39.289Z","avatar_url":"https://github.com/emmt.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FineShift Package\n\n| **License**                     | **Build Status**                                                | **Code Coverage**                                                   |\n|:--------------------------------|:----------------------------------------------------------------|:--------------------------------------------------------------------|\n| [![License][License-img]][license-url] | [![Build Status][github-ci-img]][github-ci-url] [![Build Status][appveyor-img]][appveyor-url] | [![Code Coverage][coveralls-img]][coveralls-url] [![Code Coverage][codecov-img]][codecov-url] |\n\n**FineShift** is a [**Julia**][julia-url] package for fast sub-sample\nshifting of multi-dimensional arrays.  It can also be used to apply separable\nstationary linear filters of small sizes (a.k.a. **discrete correlations**\nor **discrete convolutions**).\n\nFineShift implements fine-shifting of Julia arrays by means of separable\ninterpolation.  After installation (see below), calling `using FineShift`\nprovides the following methods:\n\n- `fineshift` for fine-shifting along a dimension;\n- `fineshift!` is an in-place version of for `fineshift`;\n- `convolve` for separable convolution by a small sampled kernel;\n- `convolve!` is an in-place version of for `convolve`;\n- `correlate` for separable correlation by a small sampled kernel;\n- `correlate!` is an in-place version of for `correlate`;\n\n\n## Installation\n\nThe easiest way to install `FineShift` is via Julia registry\n[`EmmtRegistry`](https://github.com/emmt/EmmtRegistry):\n\n```julia\nusing Pkg\npkg\"registry add General\" # if you have not yet any registries\npkg\"registry add https://github.com/emmt/EmmtRegistry\"\npkg\"add FineShift\"\n```\n\n[doc-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg\n[doc-stable-url]: https://emmt.github.io/FineShift.jl/stable\n\n[doc-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg\n[doc-dev-url]: https://emmt.github.io/FineShift.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/FineShift.jl/actions/workflows/CI.yml/badge.svg?branch=master\n[github-ci-url]: https://github.com/emmt/FineShift.jl/actions/workflows/CI.yml?query=branch%3Amaster\n\n[appveyor-img]: https://ci.appveyor.com/api/projects/status/github/emmt/FineShift.jl?branch=master\n[appveyor-url]: https://ci.appveyor.com/project/emmt/FineShift-jl/branch/master\n\n[coveralls-img]: https://coveralls.io/repos/emmt/FineShift.jl/badge.svg?branch=master\u0026service=github\n[coveralls-url]: https://coveralls.io/github/emmt/FineShift.jl?branch=master\n\n[codecov-img]: http://codecov.io/github/emmt/FineShift.jl/coverage.svg?branch=master\n[codecov-url]: http://codecov.io/github/emmt/FineShift.jl?branch=master\n\n[julia-url]: https://pkg.julialang.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femmt%2Ffineshift.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femmt%2Ffineshift.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femmt%2Ffineshift.jl/lists"}