{"id":42012349,"url":"https://github.com/pakallis/tdma","last_synced_at":"2026-01-26T02:43:27.590Z","repository":{"id":87052047,"uuid":"136506985","full_name":"pakallis/tdma","owner":"pakallis","description":"A Go package that solves a tridiagonal system of equations using the Tridiagonal matrix algorithm (TDMA)","archived":false,"fork":false,"pushed_at":"2018-06-10T11:54:54.000Z","size":3,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-06-20T02:12:18.526Z","etag":null,"topics":["differential-equations","equation-solver","gauss-elimination","linear-algebra","matrix-decompositions","matrix-factorization"],"latest_commit_sha":null,"homepage":"","language":"Go","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/pakallis.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-06-07T16:56:42.000Z","updated_at":"2019-01-13T18:54:39.000Z","dependencies_parsed_at":"2023-06-05T07:30:42.864Z","dependency_job_id":null,"html_url":"https://github.com/pakallis/tdma","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pakallis/tdma","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pakallis%2Ftdma","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pakallis%2Ftdma/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pakallis%2Ftdma/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pakallis%2Ftdma/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pakallis","download_url":"https://codeload.github.com/pakallis/tdma/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pakallis%2Ftdma/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28765343,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T02:25:41.078Z","status":"ssl_error","status_checked_at":"2026-01-26T02:24:28.809Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["differential-equations","equation-solver","gauss-elimination","linear-algebra","matrix-decompositions","matrix-factorization"],"created_at":"2026-01-26T02:43:26.924Z","updated_at":"2026-01-26T02:43:27.579Z","avatar_url":"https://github.com/pakallis.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TDMA\n\nA Go package that solves a tridiagonal system of equations using the Tridiagonal matrix algorithm (TDMA)\n\n## Quick start\n---\n### Installation\n\n```\ngo get -u github.com/pakallis/tdma/tdma\n```\n### Example Usage\n\n1. Create file solve_tdma.go\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"github.com/pakallis/tdma/tdma\"\n)\n\nfunc main() {\n\tvar l = []float64{0, -1, -1, -1}\n\tvar d = []float64{4, 4, 4, 4}\n\tvar u = []float64{-1, -1, -1, 0}\n\tvar b = []float64{5, 5, 10, 23}\n\tresult := tdma.Solve(l, d, u, b)\n\n\tfmt.Println(\"Result:\")\n\tfor i := 0; i \u003c len(result); i++ {\n\t\tfmt.Printf(\"%g \", result[i])\n\t}\n\tfmt.Println()\n}\n\n```\n\n2. Run file with\n```\ngo run solve_tdma.go\n```\n\n### Testing\n\n```\ncd tdma_test\ngo test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpakallis%2Ftdma","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpakallis%2Ftdma","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpakallis%2Ftdma/lists"}