Searched refs:mP (Results 1 – 1 of 1) sorted by relevance
218 * legendre.mP[n][m] in GeomagneticField()225 * legendre.mP[n][m] in GeomagneticField()339 public final float[][] mP; field in GeomagneticField.LegendreTable359 mP = new float[maxN + 1][]; in LegendreTable()361 mP[0] = new float[] { 1.0f }; in LegendreTable()364 mP[n] = new float[n + 1]; in LegendreTable()368 mP[n][m] = sin * mP[n - 1][m - 1]; in LegendreTable()369 mPDeriv[n][m] = cos * mP[n - 1][m - 1] in LegendreTable()372 mP[n][m] = cos * mP[n - 1][m]; in LegendreTable()373 mPDeriv[n][m] = -sin * mP[n - 1][m] in LegendreTable()[all …]