numz 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,8 +6,9 @@ import starlightThemeObsidian from 'starlight-theme-obsidian'
6
6
 
7
7
 
8
8
  const referenceModules = [
9
+ 'typed-matrix',
9
10
  'functions',
10
- 'matrix',
11
+ // 'matrix',
11
12
  'complex',
12
13
  'signal',
13
14
  'stats',
@@ -36,12 +37,12 @@ export default defineConfig({
36
37
  href: 'https://github.com/zakarialaoui10/numz.git'
37
38
  }],
38
39
  sidebar: [
39
- {
40
- label: 'Guides',
41
- items: [
42
- { label: 'Example Guide', slug: 'guides/example' },
43
- ],
44
- },
40
+ // {
41
+ // label: 'Guides',
42
+ // items: [
43
+ // { label: 'Example Guide', slug: 'guides/example' },
44
+ // ],
45
+ // },
45
46
  {
46
47
  label : 'philosophy',
47
48
  slug : 'philosophy'
Binary file
@@ -5,9 +5,9 @@ template: splash # Remove or comment out this line to display the site sidebar o
5
5
  hero:
6
6
  tagline: Scientific computation with zikojs
7
7
  image:
8
- file: ../../assets/houston.webp
8
+ file: ../../assets/logo.png
9
9
  actions:
10
- - text: Example Guide
10
+ - text: Read the docs
11
11
  link: /guides/example/
12
12
  icon: right-arrow
13
13
  - text: Read Zikojs docs
@@ -18,23 +18,49 @@ hero:
18
18
 
19
19
  import { Card, CardGrid } from '@astrojs/starlight/components';
20
20
 
21
- ## Next steps
21
+ ## Features overview
22
22
 
23
23
  <CardGrid stagger>
24
- <Card title="Update content" icon="pencil">
25
- Edit `src/content/docs/index.mdx` to see this page change.
24
+ <Card title="Extended Array Programming">
25
+ Numz brings NumPy-like array programming to JavaScript with native, flexible data structures.
26
+ - Preserves original structure and types
27
+ - No manual loops or recursion required
26
28
  </Card>
27
- <Card title="Change page layout" icon="document">
28
- Delete `template: splash` in `src/content/docs/index.mdx` to display a
29
- sidebar on this page.
29
+ <Card title="Built on the top of zikojs">
30
+ Numz fully supports and extends core **ZikoJS data types**.
31
+ - Extend mathematical utilities and functions
32
+ - Supoorts :
33
+ - Complex numbers
34
+ - Matrices
35
+ - ...
30
36
  </Card>
31
- <Card title="Add new content" icon="add-document">
32
- Add Markdown or MDX files to `src/content/docs` to create new pages.
37
+ <Card title="Typed Matrices">
38
+ High-performance matrix types backed by TypedArrays.
39
+ - Arithmetic operations
40
+ - Reshape
41
+ - Serialization / deserialization
42
+ - ...
33
43
  </Card>
34
- <Card title="Configure your site" icon="setting">
35
- Edit your `sidebar` and other config in `astro.config.mjs`.
44
+ <Card title="Signal Processing">
45
+ Built-in tools for discrete signals and DSP :
46
+ - Sequences
47
+ - Pulses
48
+ - Windows
49
+ - Convolution
50
+ - FFT
51
+ - ...
36
52
  </Card>
37
- <Card title="Read the docs" icon="open-book">
38
- Learn more in [the Starlight Docs](https://starlight.astro.build/).
53
+ <Card title="Advanced Statistics Utilities">
54
+ A comprehensive statistics toolbox designed for large datasets and numerical analysis.
55
+
56
+ - Descriptive statistics (mean, median, mode, variance, std)
57
+ - Reductions (min, max, sum, product)
58
+ - Percentiles and quantiles
59
+ - Covariance and correlation
60
+ - Distributions
61
+ </Card>
62
+ <Card title="Modular & Composable">
63
+ - Tree-shakable modules
64
+ - Easy integration with other libraries
39
65
  </Card>
40
66
  </CardGrid>
@@ -11,5 +11,3 @@ It is inspired by:
11
11
  - **MATLAB**
12
12
 
13
13
  Numz guarantees a **layered, shape-safe, function-first numerical computing model**, designed to scale naturally from scalars to tensors while preserving mathematical correctness and clarity.
14
-
15
- <!-- Numz is a layered, shape-safe, function-first numerical computing library that brings true array programming and scientific mathematics to JavaScript, built on the top of [Zikojs](). -->
@@ -0,0 +1,74 @@
1
+ ---
2
+ title: Introduction
3
+ description: Typed matrices overview
4
+ tableOfContents: false
5
+ ---
6
+
7
+ **Typed Matrices** in **Numz** are an extension of **Zikojs Matrix**, designed to provide
8
+ **high-performance**, **memory-efficient**, and **type-safe** matrix operations.
9
+
10
+ Unlike regular matrices that rely on standard JavaScript arrays, Typed Matrices are
11
+ backed by **TypedArray** structures, enabling contiguous memory layout and faster
12
+ numerical computation.
13
+
14
+ ---
15
+
16
+ ## TypedMatrix Variants
17
+
18
+ Numz provides multiple TypedMatrix classes, each mapped to a specific
19
+ JavaScript `TypedArray` implementation.
20
+
21
+ ### Floating-Point Matrices
22
+
23
+ | Class | Backing Type | Precision | Use case |
24
+ |-------------|---------------|-----------|----------|
25
+ | `F16Matrix` | `Float16Array`| 16-bit | ML, GPU-style data |
26
+ | `F32Matrix` | `Float32Array`| 32-bit | GPU, graphics, signals |
27
+ | `F64Matrix` | `Float64Array`| 64-bit | Scientific computing |
28
+
29
+ ### Integer Matrices
30
+
31
+ | Class | Backing Type | Range | Use case |
32
+ |-------------|--------------------|-------|----------|
33
+ | `I8Matrix` | `Int8Array` | −128 → 127 | Compact data |
34
+ | `U8Matrix` | `Uint8Array` | 0 → 255 | Images, buffers |
35
+ | `I16Matrix` | `Int16Array` | −32K → 32K | DSP, audio |
36
+ | `U16Matrix` | `Uint16Array` | 0 → 65K | Indexing |
37
+ | `I32Matrix` | `Int32Array` | 32-bit | General integers |
38
+ | `U32Matrix` | `Uint32Array` | 32-bit | Large indices |
39
+
40
+ ### Big Integer Matrices
41
+
42
+ | Class | Backing Type | Notes |
43
+ |--------------|----------------------|-------|
44
+ | `BI64Matrix` | `BigInt64Array` | Requires `BigInt` |
45
+ | `BU64Matrix` | `BigUint64Array` | Large integer arithmetic |
46
+
47
+ ---
48
+
49
+ ## Example
50
+
51
+ ```js
52
+ import { F64Matrix } from 'numz';
53
+
54
+ const A = new F64Matrix(2, 2, [
55
+ 1, 2,
56
+ 3, 4
57
+ ]);
58
+
59
+ A.add(2).mul(3);
60
+
61
+ ```
62
+
63
+
64
+ ### Note
65
+ > During the construction phase, the provided data is accepted as a regular
66
+ JavaScript array only as a temporary input.
67
+ Internally, Numz copies the values into a TypedArray (``Float64Array`` in this case),
68
+ and the original array is discarded and no longer used.
69
+
70
+ > This guarantees:
71
+ - contiguous memory layout
72
+ - predictable numeric type
73
+ - better performance for subsequent operations
74
+
@@ -0,0 +1,65 @@
1
+ ---
2
+ title: declaration
3
+ description: about
4
+ tableOfContents: false
5
+ ---
6
+
7
+ import { Tabs, TabItem } from '@astrojs/starlight/components';
8
+
9
+ ## Matrix Constructor
10
+
11
+ <Tabs>
12
+ <TabItem label="Class Constructor">
13
+ - `new [Type]Matrix(r, c, arr: (number)[])` : Creates an `r × c` matrix using the provided **array of numbers**.
14
+ - `new [Type]Matrix(m : [Type]Matrix)` : Creates a **copy** of an existing `[Type]Matrix`.
15
+ - `new [Type]Matrix(arr : (number)[][])` : Creates a matrix from a **2-dimensional array**. The number of rows and columns
16
+ is inferred from the array shape.
17
+ ### Example
18
+ ```js
19
+ const M1 = new I8Matrix(3, 3, [1, 2, 3, -4, -5, 6, 7, 8, 9])
20
+ const M2 = new I8Matrix(M1)
21
+ const M3 = new F32Matrix([
22
+ [1.3, 1.2],
23
+ [-3.7, 2.75]
24
+ ])
25
+ ```
26
+ </TabItem>
27
+ <TabItem label="Functional Constructors">
28
+ - `matrix_[type](r, c, arr: (number)[])` : Functional version of the constructor that creates an `r × c` matrix from a flat array.
29
+
30
+ - `matrix_[type](m : [Type]Matrix)` : Functional copy of an existing `[Type]Matrix`.
31
+ - `matrix_[type](arr : (number)[])` : Functional constructor that creates a matrix from a **2-dimensional array**.
32
+ ### Example
33
+ ```js
34
+ const M1 = matrix_i8(3, 3, [1, 2, 3, -4, -5, 6, 7, 8, 9])
35
+ const M2 = matrix_i8(M1)
36
+ const M3 = matrix_f32([
37
+ [1.3, 1.2],
38
+ [-3.7, 2.75]
39
+ ])
40
+ ```
41
+ </TabItem>
42
+ </Tabs>
43
+
44
+ ## Static Factory Methods
45
+
46
+ All TypedMatrix classes (`F16Matrix`, `F32Matrix`, `F64Matrix`, `I8Matrix`, etc.) provide
47
+ the following **static factory methods** for convenient construction:
48
+
49
+ - `[Type]Matrix.zeros(r, c)` : Creates an `r × c` matrix filled with zeros.
50
+ - `[Type]Matrix.ones(r, c)` : Creates an `r × c` matrix filled with ones.
51
+ - `[Type]Matrix.eye(n)` : Creates an `n × n` identity matrix (ones on the diagonal, zeros elsewhere).
52
+ - `[Type]Matrix.nums(r, c, num : number)` : Creates an r × c matrix filled with the specified value num
53
+ - `Matrix.random.int(min, max)`
54
+ - `Matrix.random.float(min, max)`
55
+
56
+ ### Example
57
+
58
+ ```js
59
+ const M1 = F64Matrix.zeros(2,7)
60
+ const M2 = U32Matrix.ones(4,5)
61
+ const M3 = I32Matrix.eye(4)
62
+ const M4 = F32Matrix.nums(3, 3, -1.25)
63
+ const M5 = I16Matrix.random.int(-7, 7)
64
+ const M6 = F32Matrix.random.float(-7, 7)
65
+ ```
@@ -0,0 +1,5 @@
1
+ ---
2
+ title: accessors
3
+ description: about
4
+ tableOfContents: false
5
+ ---
@@ -0,0 +1,12 @@
1
+ ---
2
+ title: arithmetic
3
+ description: about
4
+ tableOfContents: false
5
+ ---
6
+
7
+ - `.add(...m: (Matrix | number)[])` : Element-wise addition with one or more matrices or scalars.
8
+ - `.sub(...m: (Matrix | number)[])` : Element-wise subtraction with one or more matrices or scalars.
9
+ - `.mul(...m: (Matrix | number)[])` : Element-wise multiplication with one or more matrices or scalars.
10
+ - `.div(...m: (Matrix | number)[])` : Element-wise division with one or more matrices or scalars.
11
+ - `.modulo(...m: (Matrix | number)[])` : Element-wise modulo operation with one or more matrices or scalars.
12
+ - `.dot(m: Matrix)` : Matrix multiplication (linear algebra dot product).
@@ -0,0 +1,11 @@
1
+ ---
2
+ title: checkers
3
+ description: checkers
4
+ # sidebar:
5
+ # order : 0
6
+ tableOfContents: false
7
+ ---
8
+
9
+ Hello world;
10
+
11
+ My name is Zakaria ELALAOUI, There’s nothing impressive here, just skip this part and go straight to the documentation.
@@ -0,0 +1,5 @@
1
+ ---
2
+ title: float only
3
+ description: about
4
+ tableOfContents: false
5
+ ---
@@ -0,0 +1,12 @@
1
+ ---
2
+ title: reshape
3
+ description: reshape
4
+ tableOfContents: false
5
+ ---
6
+
7
+ - `.reshape(r, c)` : Reshapes the matrix to `(r × c)` without changing the total number of elements.
8
+ - `.reshape(r0, c0, r1, c1)` :
9
+ - `.hstack(...matrices: Matrix[])` : Horizontally stacks matrices by columns (same number of rows required).
10
+ - `.vstack(...matrices: Matrix[])` : Vertically stacks matrices by rows (same number of columns required).
11
+ - `.hqueue(...matrices: Matrix[])` : Appends matrices horizontally, preserving row order (row-wise concatenation).
12
+ - `.vqueue(...matrices: Matrix[])` : Appends matrices vertically, preserving column order (column-wise concatenation).
@@ -2,13 +2,20 @@
2
2
  --sl-content-width: 50rem;
3
3
  --sl-text-5xl: 3.5rem;
4
4
  }
5
-
6
5
  h1{
7
- color : darkblue;
8
- /* text-decoration: 2px underline blueviolet;
9
- text-decoration-skip-ink: auto; */
10
- /* border-bottom: 1px red solid; */
6
+ color : var(--sl-color-accent-high);
7
+ }
8
+ h2{
9
+ color : var(--slsg-node-color-7);
10
+ }
11
+ h3{
12
+ color : var(--slsg-node-color-8);
13
+
11
14
  }
15
+
16
+ /* a, summary span{
17
+ color: var(--sl-color-accent-lows);
18
+ } */
12
19
  p a{
13
20
  color: blueviolet;
14
21
  text-decoration: none;
@@ -16,6 +23,10 @@ p a{
16
23
  text-decoration: underline;
17
24
  }
18
25
  }
19
- /* strong{
20
- color: blueviolet;
26
+ strong{
27
+ color: var(--slsg-node-color-8);
28
+ }
29
+
30
+ /* #starlight__sidebar li, .group-label span{
31
+ color: gray;
21
32
  } */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "numz",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "scientific computing with zikojs",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -18,17 +18,17 @@
18
18
  "author": "zakaria elalaoui",
19
19
  "keywords": [
20
20
  "zikojs",
21
- "zikojs-addons"
21
+ "math"
22
22
  ],
23
23
  "license": "MIT",
24
24
  "devDependencies": {
25
- "@rollup/plugin-commonjs": "^28.0.0",
26
- "@rollup/plugin-node-resolve": "^15.3.0",
27
- "@rollup/plugin-terser": "^0.4.4",
28
- "cross-env": "^7.0.3",
29
- "rollup": "^4.24.0"
25
+ "@rollup/plugin-commonjs": "^29.0.3",
26
+ "@rollup/plugin-node-resolve": "^16.0.3",
27
+ "@rollup/plugin-terser": "^1.0.0",
28
+ "cross-env": "^10.1.0",
29
+ "rollup": "^4.62.5"
30
30
  },
31
31
  "dependencies": {
32
- "ziko": "^0.57.0"
32
+ "ziko": "^1.8.0"
33
33
  }
34
34
  }