File tree
103 files changed
+3165
-584
lines changed- .github/workflows
- docs
- library
- templates
- extmod
- locale
- ports
- espressif
- boards
- adafruit_feather_esp32s2_tftback_nopsram
- adafruit_feather_esp32s2_tft
- adafruit_feather_esp32s2
- adafruit_funhouse
- adafruit_magtag_2.9_grayscale
- adafruit_metro_esp32s2
- adafruit_qtpy_esp32s2
- ai_thinker_esp_12k_nodemcu
- artisense_rd00
- atmegazero_esp32s2
- crumpspace_crumps2
- electroniccats_bastwifi
- espressif_esp32s3_box
- espressif_esp32s3_devkitc_1_n8r2
- espressif_esp32s3_devkitc_1_n8r8
- espressif_esp32s3_devkitc_1_n8
- espressif_hmi_devkit_1
- espressif_kaluga_1.3
- espressif_kaluga_1
- espressif_saola_1_wroom
- espressif_saola_1_wrover
- franzininho_wifi_wroom
- franzininho_wifi_wrover
- gravitech_cucumber_ms
- gravitech_cucumber_m
- gravitech_cucumber_rs
- gravitech_cucumber_r
- lilygo_ttgo_t8_s2_st7789
- lolin_s2_mini
- lolin_s2_pico
- microdev_micro_s2
- morpheans_morphesp-240
- muselab_nanoesp32_s2_wroom
- muselab_nanoesp32_s2_wrover
- odt_pixelwing_esp32_s2
- targett_module_clip_wroom
- targett_module_clip_wrover
- unexpectedmaker_feathers2_neo
- unexpectedmaker_feathers2_prerelease
- unexpectedmaker_feathers2
- unexpectedmaker_tinys2
- common-hal/digitalio
- esp-idf-config
- supervisor
- tools
- nrf/boards/Seeed_XIAO_nRF52840_Sense
- raspberrypi/boards/adafruit_kb2040
- py
- tools
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
103 files changed
+3165
-584
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
241 | 241 |
| |
242 | 242 |
| |
243 | 243 |
| |
244 |
| - | |
| 244 | + | |
245 | 245 |
| |
246 | 246 |
| |
247 | 247 |
| |
|
Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
148 | 148 |
| |
149 | 149 |
| |
150 | 150 |
| |
151 |
| - | |
| 151 | + | |
152 | 152 |
| |
153 | 153 |
| |
154 | 154 |
| |
|
Lines changed: 4 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
15 | 15 |
| |
16 | 16 |
| |
17 | 17 |
| |
18 |
| - | |
| 18 | + | |
19 | 19 |
| |
20 | 20 |
| |
21 | 21 |
| |
| |||
25 | 25 |
| |
26 | 26 |
| |
27 | 27 |
| |
28 |
| - | |
29 |
| - | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
30 | 31 |
| |
31 | 32 |
| |
32 | 33 |
| |
|
Lines changed: 3 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
95 | 95 |
| |
96 | 96 |
| |
97 | 97 |
| |
98 |
| - | |
| 98 | + | |
99 | 99 |
| |
100 |
| - | |
| 100 | + | |
101 | 101 |
| |
102 |
| - | |
| 102 | + | |
103 | 103 |
| |
104 | 104 |
| |
105 | 105 |
| |
|
Lines changed: 4 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + |
- README.md+13-5
- code/micropython.mk+3-1
- code/ndarray.c+404-134
- code/ndarray.h+15-4
- code/ndarray_operators.c+33-1
- code/ndarray_properties.c+15
- code/numpy/approx.c+6
- code/numpy/carray/carray.c+826
- code/numpy/carray/carray.h+237
- code/numpy/carray/carray_tools.c+28
- code/numpy/carray/carray_tools.h+25
- code/numpy/compare.c+11
- code/numpy/create.c+238-23
- code/numpy/create.h+6-5
- code/numpy/fft/fft.c+18
- code/numpy/fft/fft.h+6
- code/numpy/fft/fft_tools.c+129-7
- code/numpy/fft/fft_tools.h+5
- code/numpy/filter.c+57-9
- code/numpy/linalg/linalg.c+6
- code/numpy/numerical.c+79-51
- code/numpy/numpy.c+48-28
- code/numpy/poly.c+18
- code/numpy/stats.c+2
- code/numpy/transform.c+134
- code/numpy/transform.h+1
- code/numpy/vector.c+256-48
- code/numpy/vector.h+38-33
- code/scipy/signal/signal.c+16
- code/scipy/special/special.c+4-4
- code/ulab.c+10-2
- code/ulab.h+42-2
- code/ulab_tools.c+28-1
- code/ulab_tools.h+9-1
- docs/manual/source/conf.py+2-2
- docs/manual/source/numpy-fft.rst+36
- docs/manual/source/numpy-functions.rst+227-32
- docs/manual/source/numpy-universal.rst+78-7
- docs/manual/source/scipy-signal.rst+3-1
- docs/manual/source/ulab-intro.rst+50-15
- docs/manual/source/ulab-ndarray.rst+157-18
- docs/numpy-fft.ipynb+37-3
- docs/numpy-functions.ipynb+277-19
- docs/numpy-universal.ipynb+101-11
- docs/scipy-signal.ipynb+8-8
- docs/ulab-convert.ipynb+82-81
- docs/ulab-intro.ipynb+61-10
- docs/ulab-ndarray.ipynb+279-59
- docs/ulab-numerical.ipynb+7-7
- docs/ulab-programming.ipynb+1-1
- test-common.sh+1-1
- tests/1d/complex/complex_exp.py+17
- tests/1d/complex/complex_exp.py.exp+42
- tests/1d/complex/complex_sqrt.py+18
- tests/1d/complex/complex_sqrt.py.exp+42
- tests/1d/complex/imag_real.py+19
- tests/1d/complex/imag_real.py.exp+14
- tests/2d/complex/binary_op.py+26
- tests/2d/complex/binary_op.py.exp+21
- tests/2d/complex/complex_exp.py+24
- tests/2d/complex/complex_exp.py.exp+98
- tests/2d/complex/complex_sqrt.py+25
- tests/2d/complex/complex_sqrt.py.exp+98
- tests/2d/complex/conjugate.py+12
- tests/2d/complex/conjugate.py.exp+7
- tests/2d/complex/imag_real.py+28
- tests/2d/complex/imag_real.py.exp+146
- tests/2d/complex/sort_complex.py+26
- tests/2d/complex/sort_complex.py.exp+12
- tests/2d/numpy/arange.py+11
- tests/2d/numpy/arange.py.exp+15
- tests/2d/numpy/concatenate.py+18
- tests/2d/numpy/concatenate.py.exp+20
- tests/2d/numpy/eye.py+30
- tests/2d/numpy/eye.py.exp+78
- tests/2d/numpy/full.py+9
- tests/2d/numpy/full.py.exp+10
- tests/2d/numpy/initialisation.py+5-97
- tests/2d/numpy/initialisation.py.exp-156
- tests/2d/numpy/linspace.py+10
- tests/2d/numpy/linspace.py.exp+10
- tests/2d/numpy/logspace.py+10
- tests/2d/numpy/logspace.py.exp+10
- tests/2d/numpy/ones.py+13
- tests/2d/numpy/ones.py.exp+39
- tests/2d/numpy/zeros.py+13
- tests/2d/numpy/zeros.py.exp+39
- tests/3d/complex/complex_exp.py+24
- tests/3d/complex/complex_exp.py.exp+115
- tests/3d/complex/complex_sqrt.py+26
- tests/3d/complex/complex_sqrt.py.exp+151
- tests/3d/complex/imag_real.py+28
- tests/3d/complex/imag_real.py.exp+309
- tests/4d/complex/complex_exp.py+26
- tests/4d/complex/complex_exp.py.exp+142
- tests/4d/complex/complex_sqrt.py+27
- tests/4d/complex/complex_sqrt.py.exp+250
- tests/4d/complex/imag_real.py+29
- tests/4d/complex/imag_real.py.exp+625
Lines changed: 54 additions & 14 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2661 | 2661 |
| |
2662 | 2662 |
| |
2663 | 2663 |
| |
2664 |
| - | |
| 2664 | + | |
2665 | 2665 |
| |
2666 | 2666 |
| |
2667 | 2667 |
| |
| |||
2717 | 2717 |
| |
2718 | 2718 |
| |
2719 | 2719 |
| |
2720 |
| - | |
| 2720 | + | |
2721 | 2721 |
| |
2722 | 2722 |
| |
2723 | 2723 |
| |
2724 |
| - | |
| 2724 | + | |
2725 | 2725 |
| |
2726 | 2726 |
| |
2727 | 2727 |
| |
| |||
2813 | 2813 |
| |
2814 | 2814 |
| |
2815 | 2815 |
| |
| 2816 | + | |
| 2817 | + | |
| 2818 | + | |
| 2819 | + | |
2816 | 2820 |
| |
2817 | 2821 |
| |
2818 | 2822 |
| |
| |||
2907 | 2911 |
| |
2908 | 2912 |
| |
2909 | 2913 |
| |
| 2914 | + | |
| 2915 | + | |
| 2916 | + | |
| 2917 | + | |
| 2918 | + | |
| 2919 | + | |
| 2920 | + | |
| 2921 | + | |
2910 | 2922 |
| |
2911 | 2923 |
| |
2912 | 2924 |
| |
| |||
3098 | 3110 |
| |
3099 | 3111 |
| |
3100 | 3112 |
| |
| 3113 | + | |
| 3114 | + | |
| 3115 | + | |
| 3116 | + | |
3101 | 3117 |
| |
3102 | 3118 |
| |
3103 | 3119 |
| |
| |||
3201 | 3217 |
| |
3202 | 3218 |
| |
3203 | 3219 |
| |
3204 |
| - | |
| 3220 | + | |
3205 | 3221 |
| |
3206 | 3222 |
| |
3207 | 3223 |
| |
| |||
3266 | 3282 |
| |
3267 | 3283 |
| |
3268 | 3284 |
| |
| 3285 | + | |
| 3286 | + | |
| 3287 | + | |
| 3288 | + | |
3269 | 3289 |
| |
3270 | 3290 |
| |
3271 | 3291 |
| |
| |||
3379 | 3399 |
| |
3380 | 3400 |
| |
3381 | 3401 |
| |
3382 |
| - | |
| 3402 | + | |
3383 | 3403 |
| |
3384 | 3404 |
| |
3385 | 3405 |
| |
3386 | 3406 |
| |
3387 | 3407 |
| |
3388 | 3408 |
| |
3389 | 3409 |
| |
3390 |
| - | |
| 3410 | + | |
3391 | 3411 |
| |
3392 | 3412 |
| |
3393 | 3413 |
| |
3394 | 3414 |
| |
3395 | 3415 |
| |
3396 | 3416 |
| |
3397 | 3417 |
| |
| 3418 | + | |
| 3419 | + | |
| 3420 | + | |
| 3421 | + | |
3398 | 3422 |
| |
3399 | 3423 |
| |
3400 | 3424 |
| |
| |||
3404 | 3428 |
| |
3405 | 3429 |
| |
3406 | 3430 |
| |
| 3431 | + | |
| 3432 | + | |
| 3433 | + | |
| 3434 | + | |
3407 | 3435 |
| |
3408 | 3436 |
| |
3409 | 3437 |
| |
3410 | 3438 |
| |
3411 |
| - | |
| 3439 | + | |
3412 | 3440 |
| |
3413 | 3441 |
| |
3414 | 3442 |
| |
3415 |
| - | |
| 3443 | + | |
3416 | 3444 |
| |
3417 | 3445 |
| |
3418 | 3446 |
| |
| 3447 | + | |
| 3448 | + | |
| 3449 | + | |
| 3450 | + | |
3419 | 3451 |
| |
3420 | 3452 |
| |
3421 | 3453 |
| |
| |||
3786 | 3818 |
| |
3787 | 3819 |
| |
3788 | 3820 |
| |
3789 |
| - | |
| 3821 | + | |
| 3822 | + | |
| 3823 | + | |
| 3824 | + | |
| 3825 | + | |
3790 | 3826 |
| |
3791 | 3827 |
| |
3792 | 3828 |
| |
| |||
3844 | 3880 |
| |
3845 | 3881 |
| |
3846 | 3882 |
| |
3847 |
| - | |
| 3883 | + | |
3848 | 3884 |
| |
3849 | 3885 |
| |
3850 | 3886 |
| |
3851 | 3887 |
| |
3852 | 3888 |
| |
3853 | 3889 |
| |
3854 | 3890 |
| |
3855 |
| - | |
| 3891 | + | |
3856 | 3892 |
| |
3857 | 3893 |
| |
3858 | 3894 |
| |
| |||
4332 | 4368 |
| |
4333 | 4369 |
| |
4334 | 4370 |
| |
4335 |
| - | |
| 4371 | + | |
4336 | 4372 |
| |
4337 | 4373 |
| |
4338 | 4374 |
| |
| |||
4533 | 4569 |
| |
4534 | 4570 |
| |
4535 | 4571 |
| |
4536 |
| - | |
| 4572 | + | |
4537 | 4573 |
| |
4538 | 4574 |
| |
4539 | 4575 |
| |
4540 | 4576 |
| |
4541 | 4577 |
| |
4542 | 4578 |
| |
4543 | 4579 |
| |
4544 |
| - | |
| 4580 | + | |
| 4581 | + | |
| 4582 | + | |
| 4583 | + | |
| 4584 | + | |
4545 | 4585 |
| |
4546 | 4586 |
| |
4547 | 4587 |
| |
|
0 commit comments