Searched refs:maxN (Results 1 – 1 of 1) sorted by relevance
351 public LegendreTable(int maxN, float thetaRad) { in LegendreTable() argument359 mP = new float[maxN + 1][]; in LegendreTable()360 mPDeriv = new float[maxN + 1][]; in LegendreTable()363 for (int n = 1; n <= maxN; n++) { in LegendreTable()393 private static float[][] computeSchmidtQuasiNormFactors(int maxN) {394 float[][] schmidtQuasiNorm = new float[maxN + 1][];396 for (int n = 1; n <= maxN; n++) {