Lines Matching refs:vector
94 * @param {Array} matrix An nxn matrix represented an array of vector (column) arrays. Each vector array has index for each row.
145 //vector representing 2x2 matrix
204 * @param matrix An nxn matrix represented by an array of vector arrays.
271 * Multiplies a vector and a matrix
274 * @param {Array} vector Array representing a column vector
278 vectorMatrixProduct: function(vector, matrix)
282 len = vector.length,
290 rowProduct += vector[i] * matrix[i][j];
322 //get length of vector(ab)
324 //normalize components of vector(ab)
330 //get length of vector(cd)
332 //normalize components of vector(cd)