Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| mmultiply = function(a,b) { | |
| return a.map(function(x,i) { | |
| return transpose(b).map(function(y,k) { | |
| return dotproduct(x, y) | |
| }); | |
| }); | |
| } | |
| dotproduct = function(a,b) { | |
| return a.map(function(x,i) { |