-
Notifications
You must be signed in to change notification settings - Fork 0
/
147mat.html
37 lines (30 loc) · 1.5 KB
/
147mat.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>1 4 7</title>
<meta content="width=device-width,initial-scale=1,user-scalable=no" name=viewport>
<script src="style.js" defer></script>
</head><body>
1 4 7 M R A I T X
M R
A I
T X
98 76 43 SU Sδ
  I find myself often needing a matrix, or transpositioning
  to properly solve a math problem or fit things across the monitor, etc.
  I call it a "1 4 7 Matrix". Consider an example where
  everything runs vertically. I have to write it as so,
  to understand it:
  -- intended position -- matrix position
  1 2 3 1 4 7
 
  4 5 6 2 5 8
 
  7 8 9 3 6 9
  Part1, Part2 and Part3, in vertical order- map to the first 3 elements
  in the row, a horizontal order. And so on...
  We want vertically-running Parts, to appear in intended order,
  as the vertical ordering wraps back to the top.
  And in this example, they wrap back every 3 elements.
</body></html>