Lines Matching refs:vector
96 * @param {Array} matrix An nxn matrix represented an array of vector (column) arrays. Each vector array has index for each row.
147 //vector representing 2x2 matrix
206 * @param matrix An nxn matrix represented by an array of vector arrays.
273 * Multiplies a vector and a matrix
276 * @param {Array} vector Array representing a column vector
280 vectorMatrixProduct: function(vector, matrix)
284 len = vector.length,
292 rowProduct += vector[i] * matrix[i][j];
324 //get length of vector(ab)
326 //normalize components of vector(ab)
332 //get length of vector(cd)
334 //normalize components of vector(cd)