Commit d146359
authored
Merge pull request adafruit#4881 from jepler/update-ulab-3.0
update to ulab 3.0.04 files changed
Lines changed: 15 additions & 10 deletions
File tree
- extmod
- locale
- ports/stm/boards
- espruino_wifi
- stm32f411ce_blackpill
- .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
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3052 | 3052 | | |
3053 | 3053 | | |
3054 | 3054 | | |
| 3055 | + | |
| 3056 | + | |
| 3057 | + | |
| 3058 | + | |
3055 | 3059 | | |
3056 | 3060 | | |
3057 | 3061 | | |
| |||
3231 | 3235 | | |
3232 | 3236 | | |
3233 | 3237 | | |
| 3238 | + | |
3234 | 3239 | | |
3235 | 3240 | | |
3236 | 3241 | | |
3237 | | - | |
| 3242 | + | |
3238 | 3243 | | |
3239 | 3244 | | |
3240 | 3245 | | |
| |||
3275 | 3280 | | |
3276 | 3281 | | |
3277 | 3282 | | |
3278 | | - | |
| 3283 | + | |
3279 | 3284 | | |
3280 | 3285 | | |
3281 | 3286 | | |
| |||
3819 | 3824 | | |
3820 | 3825 | | |
3821 | 3826 | | |
| 3827 | + | |
3822 | 3828 | | |
3823 | 3829 | | |
3824 | 3830 | | |
3825 | 3831 | | |
3826 | 3832 | | |
3827 | 3833 | | |
3828 | 3834 | | |
3829 | | - | |
| 3835 | + | |
| 3836 | + | |
3830 | 3837 | | |
3831 | 3838 | | |
3832 | 3839 | | |
| |||
4129 | 4136 | | |
4130 | 4137 | | |
4131 | 4138 | | |
4132 | | - | |
| 4139 | + | |
4133 | 4140 | | |
4134 | 4141 | | |
4135 | 4142 | | |
4136 | | - | |
| 4143 | + | |
4137 | 4144 | | |
4138 | 4145 | | |
4139 | 4146 | | |
| |||
4316 | 4323 | | |
4317 | 4324 | | |
4318 | 4325 | | |
4319 | | - | |
4320 | | - | |
4321 | | - | |
4322 | | - | |
4323 | 4326 | | |
4324 | 4327 | | |
4325 | 4328 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| 18 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| 22 | + | |
0 commit comments