Metadata-Version: 2.4
Name: xlhdnumpy
Version: 0.3.0
Summary: A simple numpy-like library for array operations
Home-page: https://github.com/xiaolihuidao/xlhdnumpy
Author: xiaolihuidao
Author-email: cd101168@qq.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# xlhdnumpy

A lightweight NumPy-like package for array manipulation and numerical computing.

## ✨ Features

- Array Creation: Support multi-dimensional array initialization with shape specification.
- Element-wise Operations: Add, subtract, multiply, and divide arrays (with shape compatibility checks).
- Matrix Operations: Dot product (matrix multiplication), transpose, and reshape.
- Statistical Functions:
   Sum, mean, median, min, max
   Variance and standard deviation (support for population/sample stats)
   Unique values (with sorting)
   Cumulative sum and product
   Array Manipulation: Sorting, reshaping, and transposing arrays.

## Installation
pip install xlhdnumpy
## Usage
from xlhdnumpy import array

## License

This project is licensed under the MIT License - see the LICENSE file for details.
