Skip to content

Instantly share code, notes, and snippets.

@JoshuaGross
Created July 29, 2018 21:06
Show Gist options
  • Save JoshuaGross/dc46efe573bc72d421e50c2cced3745d to your computer and use it in GitHub Desktop.
Save JoshuaGross/dc46efe573bc72d421e50c2cced3745d to your computer and use it in GitHub Desktop.
JS Matrix transpose
function transposeMatrix (m) {
return m.map((_, c) => m.map(r => r[c]));
}
console.log(transpose([[1,2,3],[4,5,6],[7,8,9]]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment