From 897b5e3d0da88754b43eef306bd7e1487d39365c Mon Sep 17 00:00:00 2001 From: Val Erastov Date: Fri, 26 Aug 2016 11:52:11 -0700 Subject: [PATCH] clean up --- web/app/math/matrix.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/web/app/math/matrix.js b/web/app/math/matrix.js index 3ad1199b..41e31ccd 100644 --- a/web/app/math/matrix.js +++ b/web/app/math/matrix.js @@ -47,14 +47,10 @@ TCAD.math.Matrix.prototype.multiply = function(m) { var out = new TCAD.math.Matrix(nRows, nCols); var outData = out.data; - // Will hold a column of "m". var mCol = TCAD.math._arr(nSum); var mData = m.data; - // Multiply. for (var col = 0; col < nCols; col++) { - // Copy all elements of column "col" of "m" so that - // will be in contiguous memory. for (var mRow = 0; mRow < nSum; mRow++) { mCol[mRow] = mData[mRow][col]; }