{"id":25612206,"url":"https://github.com/zhouzhuofei/numericalanalysis.jl","last_synced_at":"2025-12-11T23:03:47.004Z","repository":{"id":55520316,"uuid":"298165458","full_name":"ZhouZhuofei/NumericalAnalysis.jl","owner":"ZhouZhuofei","description":"This is Numerical Analysis Julia package","archived":false,"fork":false,"pushed_at":"2020-12-24T05:29:59.000Z","size":297,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-05T07:29:33.787Z","etag":null,"topics":["derivative","julia","numerical-analysis"],"latest_commit_sha":null,"homepage":"https://zhouzhuofei.github.io/NumericalAnalysis.jl/docs/build/index.html","language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ZhouZhuofei.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":"2020-09-24T04:06:54.000Z","updated_at":"2020-12-24T05:30:01.000Z","dependencies_parsed_at":"2022-08-15T02:20:20.839Z","dependency_job_id":null,"html_url":"https://github.com/ZhouZhuofei/NumericalAnalysis.jl","commit_stats":null,"previous_names":["zhouzhuofei/numericalanalysis"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ZhouZhuofei/NumericalAnalysis.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZhouZhuofei%2FNumericalAnalysis.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZhouZhuofei%2FNumericalAnalysis.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZhouZhuofei%2FNumericalAnalysis.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZhouZhuofei%2FNumericalAnalysis.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ZhouZhuofei","download_url":"https://codeload.github.com/ZhouZhuofei/NumericalAnalysis.jl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ZhouZhuofei%2FNumericalAnalysis.jl/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266424014,"owners_count":23926123,"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","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["derivative","julia","numerical-analysis"],"created_at":"2025-02-22T00:17:53.381Z","updated_at":"2025-12-11T23:03:46.508Z","avatar_url":"https://github.com/ZhouZhuofei.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NumericalAnalysis\n\n[![Build Status](https://travis-ci.com/ZhouZhuofei/NumericalAnalysis.jl.svg?branch=master)](https://travis-ci.com/ZhouZhuofei/NumericalAnalysis.jl)\n[![Build Status](https://ci.appveyor.com/api/projects/status/github/ZhouZhuofei/NumericalAnalysis.jl?svg=true)](https://ci.appveyor.com/project/ZhouZhuofei/NumericalAnalysis-jl)\n[![codecov](https://codecov.io/gh/ZhouZhuofei/NumericalAnalysis.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/ZhouZhuofei/NumericalAnalysis.jl)\n[![Coverage](https://coveralls.io/repos/github/ZhouZhuofei/NumericalAnalysis.jl/badge.svg?branch=master)](https://coveralls.io/github/ZhouZhuofei/NumericalAnalysis.jl?branch=master)\n[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://zhouzhuofei.github.io/NumericalAnalysis.jl/docs/build/index.html)\n[![License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](https://github.com/ZhouZhuofei/NumericalAnalysis.jl/blob/master/LICENSE)\n\n\n****\n\nI am a beginner of Julia and numerical analysis, there may be many problems, 👏 to discuss with me.🤣\n\n***\n\n## Basic\n\nhere are some function:\n\n```julia\njulia \u003e using NumericalAnalysis\n\n```\n\nNow,just have some Methods here\n\n- Basic\n  - N the derivative, use ForwardDiff packageto calculate $\\frac{dy}{dx}$, then recursive to get Nth derivative.(emmm, I feel a bit slow)\n  - Taylor Polynomial, get the value nth Taylor Ploynomial.\n- Solutions for equation in one Variable(in `NumericalAnalysis.SEq1`)\n  - Bisection function, find root\n  - fixed_point function.\n  - Newton's Method\n  - The Secant Method\n  - The False Position Method\n  - Modified Newton's Method\n  -  Müller’s Method\n- Interpolation and the Lagrange Polynomial\n  - nth Larange interpolating polynomial\n  - Neville’s Iterated Interpolation\n  - Newton’s Divided-Difference Formula\n  - Natural Cubic Spline\n  - Clamped Cubic Spline\n- Numerical Differentiation and integration\n  - Differentiation\n    - Three-Point and Five-Point formula\n  - Integration\n     - Trapezoidal Rule\n     - Simpson's Rule\n     - Newton_cotes\n     - Romberg\n     - Gaussian_Quad\n  - Mutiple Integrals\n     - SimpsonDoubleIntegral\n     - GaussianDoubleIntegral\nmore information in Docs.\n\n.....\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzhouzhuofei%2Fnumericalanalysis.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzhouzhuofei%2Fnumericalanalysis.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzhouzhuofei%2Fnumericalanalysis.jl/lists"}