{"id":16852868,"url":"https://github.com/avdeev/interpolation","last_synced_at":"2025-03-18T10:17:21.013Z","repository":{"id":24551105,"uuid":"27958001","full_name":"avdeev/interpolation","owner":"avdeev","description":"Interpolation, calculation accuracy, table of values","archived":false,"fork":false,"pushed_at":"2014-12-13T11:13:35.000Z","size":936,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-24T16:36:39.648Z","etag":null,"topics":["interpolation","javascript","mathematics"],"latest_commit_sha":null,"homepage":"http://avdeev.github.io/interpolation/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/avdeev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-12-13T11:01:51.000Z","updated_at":"2020-05-24T16:38:53.000Z","dependencies_parsed_at":"2022-08-23T01:21:17.812Z","dependency_job_id":null,"html_url":"https://github.com/avdeev/interpolation","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdeev%2Finterpolation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdeev%2Finterpolation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdeev%2Finterpolation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avdeev%2Finterpolation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/avdeev","download_url":"https://codeload.github.com/avdeev/interpolation/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244198395,"owners_count":20414443,"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":["interpolation","javascript","mathematics"],"created_at":"2024-10-13T13:48:58.617Z","updated_at":"2025-03-18T10:17:20.974Z","avatar_url":"https://github.com/avdeev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Interpolation\n\n## Demo\nhttp://avdeev.github.io/interpolation/\n\n## Lagrange Interpolation\n\n```js\n  var getLagrange = function(xInterpolationArray) {\n    L = '';\n    _.each(xInterpolationArray, function(dotActive, i) {\n      if (i \u003e 0) {\n        L += '+';\n      }\n      L += '' + dotActive[1];\n      _.each(xInterpolationArray, function(dot, j) {\n        if (i != j) {\n          L += '*((x-' + dot[0] + ') / (' + dotActive[0] + ' - ' + dot[0] + '))';\n        }\n      });\n    });\n    return L;\n  }\n```\n\n## Vendor\n\n* Underscore.js 1.6.0\n* Bootstrap v3.1.1\n* math.js\n* jQuery v1.8.3\n* Highcharts JS v3.0.9 (2014-01-15)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favdeev%2Finterpolation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favdeev%2Finterpolation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favdeev%2Finterpolation/lists"}