Matrix 5x5 Visualizer

Interactive matrix indexing and slicing demonstration

Matrix Display
0
1
2
3
4
0
1
2
3
4
49
79
85
24
78
13
47
45
57
93
23
66
74
7
87
16
26
13
98
80
80
82
35
12
26
Selection Controls
matrix[_, _]
Row: not set | Column: not set
Advanced Slicing Guide
Basic Syntax: start:end:step
Reverse Slicing: Use negative step values
  • [::-1, :] - Reverse rows
  • [:, ::-1] - Reverse columns
  • [::-1, ::-1] - Reverse both
Step Examples:
  • [::2, ::2] - Every 2nd element
  • [1::2, :] - Every 2nd row starting from 1
Real-time Updates: All selections update automatically as you type.