Searched refs:maxN (Results 1 – 1 of 1) sorted by relevance
355 public LegendreTable(int maxN, float thetaRad) { in LegendreTable() argument363 mP = new float[maxN + 1][]; in LegendreTable()364 mPDeriv = new float[maxN + 1][]; in LegendreTable()367 for (int n = 1; n <= maxN; n++) { in LegendreTable()397 private static float[][] computeSchmidtQuasiNormFactors(int maxN) {398 float[][] schmidtQuasiNorm = new float[maxN + 1][];400 for (int n = 1; n <= maxN; n++) {