{"id":31850590,"url":"https://github.com/dk96-os/mathtools","last_synced_at":"2025-10-12T11:55:52.409Z","repository":{"id":37929598,"uuid":"290065035","full_name":"DK96-OS/MathTools","owner":"DK96-OS","description":"Mathematical Software Components. This library is actively maintained, and aims to stay updated. New feature proposals are welcome, but may not be included.","archived":false,"fork":false,"pushed_at":"2025-08-14T14:17:16.000Z","size":516,"stargazers_count":2,"open_issues_count":9,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-14T15:27:49.827Z","etag":null,"topics":["data-science","data-structures","prime-numbers","statistics"],"latest_commit_sha":null,"homepage":"","language":"Java","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/DK96-OS.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-08-24T23:46:20.000Z","updated_at":"2025-08-14T14:16:58.000Z","dependencies_parsed_at":"2023-02-01T09:46:57.403Z","dependency_job_id":"08e66513-b9b4-408c-9b58-66ddd9214d32","html_url":"https://github.com/DK96-OS/MathTools","commit_stats":null,"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"purl":"pkg:github/DK96-OS/MathTools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DK96-OS%2FMathTools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DK96-OS%2FMathTools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DK96-OS%2FMathTools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DK96-OS%2FMathTools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DK96-OS","download_url":"https://codeload.github.com/DK96-OS/MathTools/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DK96-OS%2FMathTools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279011182,"owners_count":26084900,"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-10-12T02:00:06.719Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["data-science","data-structures","prime-numbers","statistics"],"created_at":"2025-10-12T11:55:35.842Z","updated_at":"2025-10-12T11:55:52.405Z","avatar_url":"https://github.com/DK96-OS.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"## MathTools\n[![Tests Coverage](https://github.com/DK96-OS/MathTools/actions/workflows/ci_run.yml/badge.svg?branch=master)](https://github.com/DK96-OS/MathTools/actions/workflows/ci_run.yml)\n\nSoftware Tools for Applied Mathematics are categorized into these modules:\n### Modules\n- __Arrays__\n- __Format__\n- __Generators__\n- __Lists__\n- __Numbers__\n- __Pairs__\n- __Statistics__\n\n### Import in Gradle Build Script\nChoose The Modules that you want to import:\n\n\tdef mt_version = \"0.7.8\"\n\tdependencies {\n\t\timplementation 'io.github.dk96-os:arrays:$mt_version'\n\t\timplementation 'io.github.dk96-os:arrays-ktx:$mt_version'\n\t\timplementation 'io.github.dk96-os:format:$mt_version'\n\t\timplementation 'io.github.dk96-os:generators:$mt_version'\n\t\timplementation 'io.github.dk96-os:lists:$mt_version'\n\t\timplementation 'io.github.dk96-os:lists-ktx:$mt_version'\n\t\timplementation 'io.github.dk96-os:numbers:$mt_version'\n\t\timplementation 'io.github.dk96-os:pairs:$mt_version'\n\t\timplementation 'io.github.dk96-os:statistics:$mt_version'\n\t}\n\n___\n\n## MathTools Modules\nEach module is published as a package that can be downloaded from GitHub packages.\nSome modules depend on each other, but cross-module dependencies have been minimized.\n\n### Arrays\nNumerical array operations not included in the standard library.\n- Whole Number types only\n\n### Arrays-ktx\nExtension methods on Numerical Array Types.\n- Whole Number types only\n\n___\n\n### Format\nTools that help format numerical data.\n- Rounding\n- Percentages\n- Serialization\n\n___\n\n### Generators\nGenerate Numbers of different types within specified ranges, and with optional relative probability.\nAlso contains number counting data structures of different capacities for different requirements.\n\n___\n\n### Lists\nFor specialized list operations, with an emphasis on Number types.\n- Search within a range of indices in a List.\n\n#### Lists-ktx\nKotlin extensions for the Lists module.\n\n___\n\n### Numbers\nSpecialized Numerical Operations, Data Structures, Factoring, and Prime Number Caches.\n\n___\n\n### Pairs\nSimple Data Structures containing pairs of numbers of the same type.\n- Fixed Pairs\n- (Mutable) Pairs\n___\n\n### Statistics\nProcess lists and arrays of primitive Number types, to determine statistical characteristics.\n- Determine the average, min, max, and standard deviation, simultaneously in 1 pass.\n- Outlier Detection Policy\n\n____\nFor additional information, see the [Project Wiki](https://github.com/DK96-OS/MathTools/wiki)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdk96-os%2Fmathtools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdk96-os%2Fmathtools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdk96-os%2Fmathtools/lists"}