Searched defs:transpose (Results 1 - 1 of 1) sorted by relevance

/yui3/src/matrix/js/
H A DMatrixUtil.js201 * Returns the transpose for an nxn matrix.
203 * @method transpose
207 transpose: function(matrix)
212 transpose = [];
215 transpose[i] = [];
218 transpose[i].push(matrix[j][i]);
221 return transpose;

Completed in 1510 milliseconds