Matrix 5x5 Visualizer

Interactive matrix indexing and slicing demonstration

Matrix Display
0
1
2
3
4
0
1
2
3
4
66
67
82
94
47
75
21
11
47
0
55
20
45
70
4
43
90
1
58
95
12
3
67
60
91
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.