Home | History | Annotate | Download | only in hardware

Lines Matching refs:mP

218                     * legendre.mP[n][m]
225 * legendre.mP[n][m]
339 public final float[][] mP;
341 // Derivative of mP, with respect to theta.
359 mP = new float[maxN + 1][];
361 mP[0] = new float[] { 1.0f };
364 mP[n] = new float[n + 1];
368 mP[n][m] = sin * mP
369 mPDeriv[n][m] = cos * mP[n - 1][m - 1]
372 mP[n][m] = cos * mP[n - 1][m];
373 mPDeriv[n][m] = -sin * mP[n - 1][m]
379 mP[n][m] = cos * mP[n - 1][m] - k * mP[n - 2][m];
380 mPDeriv[n][m] = -sin * mP[n - 1][m]