Lines Matching refs:inverse
126 * Returns the inverse of a matrix
128 * @method inverse
139 inverse: function(matrix)
145 inverse,
153 inverse = [
174 inverse = MatrixUtil.scalarMultiply(adjunct, 1/determinant);
176 return inverse;
895 * Returns the inverse (in array form) of the matrix.
897 * @method inverse
900 inverse: function()
902 return Y.MatrixUtil.inverse(this.getMatrixArray());