Skip to content

Instantly share code, notes, and snippets.

@singularitti
Last active April 7, 2019 05:27
Show Gist options
  • Save singularitti/d356def0a9dcc32f470876aae58d5e22 to your computer and use it in GitHub Desktop.
Save singularitti/d356def0a9dcc32f470876aae58d5e22 to your computer and use it in GitHub Desktop.
Reshape array #JavaScript #array
function reshape(oldNdarr, newShape) {
/*
Here oldNdarray is a ndarray, newShape is an array spcifying the newer one's shape.
*/
return ndarray(oldNdarr.data, newShape);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment