(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
function multiply_matrix(a, b) | |
{ | |
var c = new Array; | |
for(y=0;y<a.length;y++){ | |
c[y] = new Array; | |
for(x=0;x<b[0].length;x++){ | |
sum = 0; | |
for(i=0;i<a[0].length;i++){ | |
sum += a[y][i] * b[i][x]; | |
} |