From 74c50d73c6ad4acc65ba197462a1b427ea5ca5ec Mon Sep 17 00:00:00 2001 From: "Rogelio J. Baucells" Date: Mon, 27 Apr 2015 12:21:58 -0400 Subject: [PATCH] multiply() update --- lib/function/arithmetic/multiply.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/function/arithmetic/multiply.js b/lib/function/arithmetic/multiply.js index 39bfde411..41fee6baa 100644 --- a/lib/function/arithmetic/multiply.js +++ b/lib/function/arithmetic/multiply.js @@ -628,7 +628,7 @@ function factory (type, config, load, typed) { size: [arows, bcolumns] }); // workspace - var x = new Array(arows); + var x = values ? new Array(arows) : undefined; // vector with marks indicating a value x[i] exists in a given column var w = new Array(arows);