awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
dpilger26 avatar

dpilger26/NumCpp

0
View on GitHub↗
3,963 stars·575 forks·C++·MIT·1 vuedpilger26.github.io/NumCpp↗

NumCpp

NumCpp est un framework C++ et une bibliothèque de calcul numérique qui fournit une boîte à outils pour la gestion de tableaux multidimensionnels et des routines mathématiques. Il fonctionne comme une implémentation C++ de l'écosystème NumPy, offrant un framework de calcul scientifique pour gérer des tenseurs et effectuer des équations algébriques complexes.

Le projet permet une manipulation de tableaux haute performance dans un environnement C++ sans dépendre d'un runtime Python. Il se distingue en fournissant une interface similaire à NumPy pour exécuter de l'algèbre linéaire, gérer des structures de données multidimensionnelles et effectuer des traitements numériques.

La bibliothèque couvre un large éventail de capacités, incluant les opérations algébriques matricielles, la gestion de la géométrie des tableaux via le slicing et le reshaping, et la génération de distributions aléatoires. Elle inclut également des outils pour l'analyse de jeux de données, les statistiques sur les tableaux, et l'import/export de données numériques via des formats binaires et texte.

Features

  • Multi-Dimensional Arrays - Implements a comprehensive framework for creating and manipulating multi-dimensional arrays for scientific computing.
  • NumPy-Compatible Implementations - Replicates the multi-dimensional array operations and numerical functions of the Python NumPy ecosystem in C++.
  • Strided - Utilizes strided memory mapping to allow efficient array reshaping and slicing without copying data.
  • Generic Type Safety - Leverages C++ templates to provide generic, type-safe multi-dimensional arrays for any numerical data type.
  • Array Broadcasting - Provides array broadcasting to virtually expand smaller arrays for element-wise arithmetic operations.
  • Array Geometry Management - Provides logic for controlling array geometry through reshaping, stride modifications, and size adjustments.
  • Array Manipulations - Implements high-performance functions for modifying array contents, including efficient slicing, reshaping, and broadcasting.
  • Array Slicing - Implements powerful array slicing to extract sub-sections based on boundaries or predicates.
  • Dimensional Reductions - Implements dimensional reduction operations to aggregate multi-dimensional data along specific axes.
  • Element-wise Array Operations - Implements high-performance element-wise operations that apply mathematical functions across every array member.
  • Linear Algebra Routines - Provides linear algebra routines to solve algebraic equations and compute matrix norms or determinants.
  • Matrix Numerical Computations - Provides algorithms for the representation and manipulation of multi-dimensional arrays using linear algebra.
  • Array Initialization - Offers programmatic creation of arrays using linear spacing, identity matrices, and fixed values.
  • Numerical Array Operations - Performs complex mathematical calculations, indexing, and reshaping on multi-dimensional arrays for scientific computing.
  • Numerical Libraries - Offers optimized algorithms for matrix operations and mathematical calculations on large datasets.
  • Contiguous Memory Buffers - Uses contiguous memory buffers to store multi-dimensional data, ensuring high cache locality and performance.
  • Array Reorientation - Enables data reorientation through diagonal extraction, triangular matrix creation, and axis flipping.
  • Array Binary Serialization - Enables fast loading and saving of arrays by writing raw memory contents and shape metadata directly to disk.
  • Data Import and Export - Enables the import and export of numerical arrays using binary dumps and delimited text formats.
  • Logical Array Operations - Provides element-wise logical operations to evaluate conditions and filter multi-dimensional data.
  • Array Concatenations - Ships functions to join multiple arrays via stacking or appending into a single structure.
  • Array Reductions - Accumulates values along specified axes to compute sums, products, and means for data aggregation.
  • Random Distribution Generation - Produces arrays populated with random values from normal and integer distributions for simulation and testing.
  • Array Statistical Aggregations - Calculates summary statistics like minimums, maximums, and unique values along specified axes.
  • Scientific Computing - Provides a computational framework for performing complex mathematical modeling and large-scale scientific data analysis.
  • Statistical Analysis Libraries - Provides comprehensive toolsets for calculating descriptive statistics and correlations across multi-dimensional datasets.
  • Scalar Mathematical Functions - Implements absolute value, trigonometric, logarithmic, and power functions for numeric types across arrays.
  • Array Equality Comparison - Provides utilities for element-wise equality checks and identifying divergent indices between numerical datasets.
  • Mathematical Libraries - C++ implementation of NumPy.
  • Mathematics - Template-based C++ implementation of NumPy.
  • Mathematics and Statistics - C++ implementation of NumPy-style functionality.

Historique des stars

Graphique de l'historique des stars pour dpilger26/numcppGraphique de l'historique des stars pour dpilger26/numcpp

Recherche par IA

Explorez plus de dépôts awesome

Décrivez vos besoins en langage naturel — l'IA classe des milliers de projets open source sélectionnés par pertinence.

Start searching with AI

Alternatives open source à NumCpp

Projets open source similaires, classés selon le nombre de fonctionnalités partagées avec NumCpp.
  • xtensor-stack/xtensorAvatar de xtensor-stack

    xtensor-stack/xtensor

    3,748Voir sur GitHub↗

    xtensor is a C++ multidimensional array library for numerical computing that provides N-dimensional containers with an interface mirroring the NumPy API. It utilizes a lazy evaluation expression engine to defer numerical computations until assignment, which minimizes memory allocations and intermediate copies. The library features a foreign memory array adaptor that allows it to wrap external buffers, such as NumPy arrays, to perform numerical operations in-place without duplicating data. It further optimizes performance through lazy broadcasting and a system that manages the lifetime of temp

    C++c-plus-plus-14multidimensional-arraysnumpy
    Voir sur GitHub↗3,748
  • rust-ndarray/ndarrayAvatar de rust-ndarray

    rust-ndarray/ndarray

    4,290Voir sur GitHub↗

    ndarray is a multidimensional array library for Rust that serves as a linear algebra framework and scientific computing tool. It provides the core infrastructure for creating and manipulating n-dimensional arrays, functioning as both a parallel array processor and a toolkit for numerical data analysis. The library distinguishes itself by providing efficient slicing and memory views, allowing for data sharing without copying. It leverages optimized backend math libraries for high-speed matrix multiplication and distributes heavy mathematical iterations across multiple CPU threads to accelerate

    Rust
    Voir sur GitHub↗4,290
  • nyandwi/machine_learning_completeAvatar de Nyandwi

    Nyandwi/machine_learning_complete

    4,983Voir sur GitHub↗

    This is an interactive notebook-based course that teaches machine learning from Python fundamentals through deep learning and natural language processing. It uses real datasets and multiple frameworks within a structured, hands-on curriculum that combines concise explanations with executable code cells, built-in datasets, and embedded exercise checkpoints. Learning progresses through data preparation and exploration, classical machine learning workflows, computer vision with convolutional neural networks, and natural language processing with deep learning, all delivered as a cohesive progressi

    Jupyter Notebookcomputer-visiondata-analysisdata-science
    Voir sur GitHub↗4,983
  • mrdbourke/zero-to-mastery-mlAvatar de mrdbourke

    mrdbourke/zero-to-mastery-ml

    5,839Voir sur GitHub↗

    This project is a machine learning educational curriculum and learning platform delivered through interactive Jupyter Notebooks. It serves as a comprehensive guide for mastering the Python data science toolkit, providing structured tutorials for numerical computing, tabular data manipulation, and statistical visualization. The curriculum includes specific implementation guides for Scikit-Learn and a practical course on TensorFlow for constructing, training, and deploying neural networks and computer vision models. It covers the end-to-end process of building predictive models, from initial pr

    Jupyter Notebookdata-sciencedeep-learningmachine-learning
    Voir sur GitHub↗5,839
Voir les 30 alternatives à NumCpp→

Questions fréquentes

Que fait dpilger26/numcpp ?

NumCpp est un framework C++ et une bibliothèque de calcul numérique qui fournit une boîte à outils pour la gestion de tableaux multidimensionnels et des routines mathématiques. Il fonctionne comme une implémentation C++ de l'écosystème NumPy, offrant un framework de calcul scientifique pour gérer des tenseurs et effectuer des équations algébriques complexes.

Quelles sont les fonctionnalités principales de dpilger26/numcpp ?

Les fonctionnalités principales de dpilger26/numcpp sont : Multi-Dimensional Arrays, NumPy-Compatible Implementations, Strided, Generic Type Safety, Array Broadcasting, Array Geometry Management, Array Manipulations, Array Slicing.

Quelles sont les alternatives open-source à dpilger26/numcpp ?

Les alternatives open-source à dpilger26/numcpp incluent : xtensor-stack/xtensor — xtensor is a C++ multidimensional array library for numerical computing that provides N-dimensional containers with an… rust-ndarray/ndarray — ndarray is a multidimensional array library for Rust that serves as a linear algebra framework and scientific… nyandwi/machine_learning_complete — This is an interactive notebook-based course that teaches machine learning from Python fundamentals through deep… mrdbourke/zero-to-mastery-ml — This project is a machine learning educational curriculum and learning platform delivered through interactive Jupyter… torch/torch7 — Torch7 is a scientific computing environment and tensor computation library used for deep learning research and… iamseancheney/python_for_data_analysis_2nd_chinese_version — This project is an educational resource and a collection of instructional materials for performing data manipulation…