-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
37 lines (37 loc) · 1.11 KB
/
library.json
File metadata and controls
37 lines (37 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "linear algebra",
"version": "0.0.1",
"description": "LinearAlgebra is a lightweight library designed for efficient manipulation of vectors and matrices, tailored for resource-constrained systems like the ESP32. It provides support for various types of matrices to optimize memory usage and computational performance. The library focuses on iterative implementations to ensure giving developers full control over the mathematical operations performed. Ideal for projects requiring fine-tuned linear algebra computations without unnecessary overhead.",
"keywords": [
"linear algebra",
"matrix",
"vector",
"math",
"esp32",
"embedded",
"algebra",
"mathematics"
],
"repository": {
"type": "git",
"url": "https://github.com/robinAZERTY/linear_algebra.git"
},
"authors": [
{
"name": "robinAZERTY",
"maintainer": true
}
],
"exports": {
"include": [
"LICENSE",
"docs/*",
"examples/*",
"include/*",
"src/*"
]
},
"license": "GPL-3.0-only",
"frameworks": ["arduino", "*"],
"platforms": ["espressif32", "native"]
}