Tmp: Difference between revisions
Jump to navigation
Jump to search
(Blanked the page) Tags: Blanking Manual revert |
No edit summary |
||
Line 1: | Line 1: | ||
<font size=-2> | |||
a = np.array([[10, 20, 30, 40], [50, 60, 70, 80], [90, 100, 110, 120]]) | |||
Axis 1 | |||
┌───────────────────────────▶ | |||
│ 0 1 2 3 | |||
│ ┌─────┬─────────────────── | |||
│ 0 │ 10 │ 20 30 40 | |||
│ │ a<sub>0,0</sub>│ | |||
│ │ │ | |||
│ | |||
Axis 0 │ 1 50 60 70 80 | |||
│ | |||
│ 2 90 100 110 120 | |||
│ | |||
▼ | |||
</font> |
Revision as of 23:51, 20 May 2024
a = np.array([[10, 20, 30, 40], [50, 60, 70, 80], [90, 100, 110, 120]]) Axis 1 ┌───────────────────────────▶ │ 0 1 2 3 │ ┌─────┬─────────────────── │ 0 │ 10 │ 20 30 40 │ │ a0,0│ │ │ │ │ Axis 0 │ 1 50 60 70 80 │ │ 2 90 100 110 120 │ ▼