{"id":47669949,"url":"https://github.com/mgorshkov/scipy","last_synced_at":"2026-04-02T12:30:35.706Z","repository":{"id":157576506,"uuid":"537845067","full_name":"mgorshkov/scipy","owner":"mgorshkov","description":"Scientific methods on top of NP library.","archived":false,"fork":false,"pushed_at":"2026-03-21T18:26:59.000Z","size":28,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-22T07:59:27.527Z","etag":null,"topics":["cplusplus","cpp","math","mathematics","scipy","statistics"],"latest_commit_sha":null,"homepage":"","language":"C++","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/mgorshkov.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-09-17T15:10:57.000Z","updated_at":"2026-03-11T07:30:30.000Z","dependencies_parsed_at":"2024-03-16T22:02:47.398Z","dependency_job_id":"20170fcb-507d-4981-9492-f85cea4527c8","html_url":"https://github.com/mgorshkov/scipy","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/mgorshkov/scipy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgorshkov%2Fscipy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgorshkov%2Fscipy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgorshkov%2Fscipy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgorshkov%2Fscipy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mgorshkov","download_url":"https://codeload.github.com/mgorshkov/scipy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgorshkov%2Fscipy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31306052,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T09:48:21.550Z","status":"ssl_error","status_checked_at":"2026-04-02T09:48:19.196Z","response_time":89,"last_error":"SSL_read: 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":["cplusplus","cpp","math","mathematics","scipy","statistics"],"created_at":"2026-04-02T12:30:34.615Z","updated_at":"2026-04-02T12:30:35.583Z","avatar_url":"https://github.com/mgorshkov.png","language":"C++","readme":"[![Build status](https://ci.appveyor.com/api/projects/status/bdews6m7dh2botlx/branch/main?svg=true)](https://ci.appveyor.com/project/mgorshkov/scipy/branch/main)\n\n# About\nScientific methods on top of NP library.\n\n# Requirements\nAny C++20-compatible compiler:\n* gcc 10 or higher\n* clang 6 or higher\n* Visual Studio 2019 or higher\n\n# Repo\n```\ngit clone https://github.com/mgorshkov/scipy.git\n```\n\n# Build unit tests and sample\n## Linux/MacOS\n```\nmkdir build \u0026\u0026 cd build\ncmake ..\ncmake --build .\n```\n## Windows\n```\nmkdir build \u0026\u0026 cd build\ncmake ..\ncmake --build . --config Release\n```\n\n# Build docs\n```\ncmake --build . --target doc\n```\n\nOpen scipy/build/doc/html/index.html in your browser.\n\n# Install\n```\ncmake .. -DCMAKE_INSTALL_PREFIX:PATH=~/scipy_install\ncmake --build . --target install\n```\n\n# Usage example (samples/stats)\n```\n#include \u003ciostream\u003e\n\n#include \u003cnp/Creators.hpp\u003e\n#include \u003cscipy/stats/mode.hpp\u003e\n\nint main(int, char **) {\n    using namespace np;\n    using namespace scipy;\n\n    // Mode calculation\n    Size size = 10000000;\n    auto r = random::rand(size);\n    auto m = stats::mode(r);\n    std::cout \u003c\u003c \"mode=\" \u003c\u003c m.first \u003c\u003c \" \" \u003c\u003c m.second;\n    return 0;\n}\n```\n# How to build the sample\n\n1. Clone the repo\n```\ngit clone https://github.com/mgorshkov/scipy.git\n```\n2. cd samples/stats\n```\ncd samples/stats\n```\n3. Make build dir\n```\nmkdir -p build-release \u0026\u0026 cd build-release\n```\n4. Configure cmake\n```\ncmake -DCMAKE_BUILD_TYPE=Release ..\n```\n5. Build\n## Linux/MacOS\n```\ncmake --build .\n```\n## Windows\n```\ncmake --build . --config Release\n```\n6. Run the app\n```\n$./stats\n\n```\n\n# Links\n* C++ numpy-like template-based array implementation: https://github.com/mgorshkov/np\n* Methods from pandas library on top of NP library: https://github.com/mgorshkov/pd\n* ML Methods from scikit-learn library: https://github.com/mgorshkov/sklearn\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgorshkov%2Fscipy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmgorshkov%2Fscipy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgorshkov%2Fscipy/lists"}