Home | History | Annotate | Download | only in math

Lines Matching refs:p11

195         float p11 = eigenValues[index3] - vectorV.dot(mat.mult(vectorV));

203 fAbs = FastMath.abs(p11);
217 invLength = FastMath.invSqrt(p11 * p11 + p01 * p01);
218 p11 *= invLength;
220 vectorU.mult(p11, eigenVectors[index3])
235 p11 = eigenValues[index1] - vectorS.dot(mat.mult(vectorS));
242 fAbs = FastMath.abs(p11);
255 invLength = FastMath.invSqrt(p11 * p11 + p01 * p01);
256 p11 *= invLength;
258 eigenVectors[index1] = vect.mult(p11).add(vectorS.mult(p01));