File tree
5 files changed
+11
-47
lines changed- extmod
- lib/utils
- locale
- ports/stm/boards/espruino_pico
- supervisor
5 files changed
+11
-47
lines changed- .github/workflows/build.yml+40-36
- README.md+129-16
- build-cp.sh+5-6
- build.sh+1-1
- build/esp32-cmake.sh+27
- code/micropython.mk+2
- code/ndarray.c+198-137
- code/ndarray.h+5-1
- code/ndarray_properties.c+83
- code/ndarray_properties.h+5-2
- code/numpy/approx/approx.c+7-8
- code/numpy/compare/compare.c+5-5
- code/numpy/numerical/numerical.c+13-1
- code/numpy/numpy.c+35-4
- code/numpy/vector/vector.c+18-26
- code/scipy/linalg/linalg.c+279
- code/scipy/linalg/linalg.h+21
- code/scipy/optimize/optimize.c+1-1
- code/scipy/optimize/optimize.h+9-1
- code/scipy/scipy.c+4
- code/ulab.c+23-19
- code/ulab.h+16
- code/ulab_create.c+9-14
- code/ulab_create.h+8
- docs/manual/source/conf.py+1-1
- docs/manual/source/index.rst+2
- docs/manual/source/numpy-fft.rst+2-2
- docs/manual/source/numpy-linalg.rst+2-2
- docs/manual/source/scipy-linalg.rst+151
- docs/manual/source/scipy-optimize.rst+2-2
- docs/manual/source/scipy-signal.rst+2-2
- docs/manual/source/scipy-special.rst+2-2
- docs/manual/source/ulab-ndarray.rst+91-146
- docs/manual/source/ulab-tricks.rst+268
- docs/manual/source/ulab-utils.rst+5
- docs/numpy-fft.ipynb+1-1
- docs/numpy-linalg.ipynb+1-1
- docs/scipy-linalg.ipynb+474
- docs/scipy-optimize.ipynb+1-1
- docs/scipy-signal.ipynb+1-1
- docs/scipy-special.ipynb+1-1
- docs/ulab-change-log.md+92-1
- docs/ulab-convert.ipynb+22-18
- docs/ulab-ndarray.ipynb+84-208
- docs/ulab-tricks.ipynb+582
- requirements_cp_dev.txt+15
- tests/common/linalg.py-16
- tests/common/linalg.py.exp-12
- tests/common/operators.py-21
- tests/common/operators.py.exp-16
- tests/numpy/buffer.py
- tests/numpy/buffer.py.exp
- tests/numpy/cholesky.py
- tests/numpy/cholesky.py.exp
- tests/numpy/constructors.py
- tests/numpy/constructors.py.exp
- tests/numpy/gc.py+11
- tests/numpy/gc.py.exp+4
- tests/numpy/initialisation.py
- tests/numpy/initialisation.py.exp
- tests/numpy/methods.py+17-37
- tests/numpy/slicing.py
- tests/numpy/slicing.py.exp
- tests/numpy/slicing2.py
- tests/numpy/slicing2.py.exp
- tests/scipy/cho_solve.py+29
- tests/scipy/cho_solve.py.exp+8
- tests/scipy/solve_triangular.py+22
- tests/scipy/solve_triangular.py.exp+8
Lines changed: 0 additions & 36 deletions
This file was deleted.
Lines changed: 9 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3058 | 3058 |
| |
3059 | 3059 |
| |
3060 | 3060 |
| |
| 3061 | + | |
| 3062 | + | |
| 3063 | + | |
| 3064 | + | |
3061 | 3065 |
| |
3062 | 3066 |
| |
3063 | 3067 |
| |
| |||
3237 | 3241 |
| |
3238 | 3242 |
| |
3239 | 3243 |
| |
| 3244 | + | |
3240 | 3245 |
| |
3241 | 3246 |
| |
3242 | 3247 |
| |
3243 |
| - | |
| 3248 | + | |
3244 | 3249 |
| |
3245 | 3250 |
| |
3246 | 3251 |
| |
| |||
3281 | 3286 |
| |
3282 | 3287 |
| |
3283 | 3288 |
| |
3284 |
| - | |
| 3289 | + | |
3285 | 3290 |
| |
3286 | 3291 |
| |
3287 | 3292 |
| |
| |||
4137 | 4142 |
| |
4138 | 4143 |
| |
4139 | 4144 |
| |
4140 |
| - | |
| 4145 | + | |
4141 | 4146 |
| |
4142 | 4147 |
| |
4143 | 4148 |
| |
4144 |
| - | |
| 4149 | + | |
4145 | 4150 |
| |
4146 | 4151 |
| |
4147 | 4152 |
| |
| |||
4324 | 4329 |
| |
4325 | 4330 |
| |
4326 | 4331 |
| |
4327 |
| - | |
4328 |
| - | |
4329 |
| - | |
4330 |
| - | |
4331 | 4332 |
| |
4332 | 4333 |
| |
4333 | 4334 |
| |
|
Lines changed: 0 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
22 | 22 |
| |
23 | 23 |
| |
24 | 24 |
| |
25 |
| - | |
26 | 25 |
| |
27 | 26 |
| |
28 | 27 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
8 | 8 |
| |
9 | 9 |
| |
10 | 10 |
| |
11 |
| - | |
| 11 | + | |
12 | 12 |
| |
13 | 13 |
| |
14 | 14 |
| |
|
0 commit comments