Home
last modified time | relevance | path

Searched refs:y_ell (Results 1 – 4 of 4) sorted by relevance

/dports/audio/praat/praat-6.2.03/external/gsl/
H A Dgsl_specfunc__legendre_poly.c568 double y_ell = 0.0; in gsl_sf_legendre_sphPlm_e() local
578 y_ell = (x*y_mmp1*factor1 - (ell+m-1.0)*y_mm*factor2) / (ell-m); in gsl_sf_legendre_sphPlm_e()
580 y_mmp1 = y_ell; in gsl_sf_legendre_sphPlm_e()
587 result->val = y_ell; in gsl_sf_legendre_sphPlm_e()
588 result->err = y_ell_err + (0.5*(l-m) + 1.0) * GSL_DBL_EPSILON * fabs(y_ell); in gsl_sf_legendre_sphPlm_e()
641 double y_ell; in gsl_sf_legendre_sphPlm_array() local
653 y_ell = (x*y_mmp1*factor1 - (ell+m-1)*y_mm*factor2) / (ell-m); in gsl_sf_legendre_sphPlm_array()
655 y_mmp1 = y_ell; in gsl_sf_legendre_sphPlm_array()
656 result_array[ell-m] = y_ell; in gsl_sf_legendre_sphPlm_array()
/dports/math/gsl/gsl-2.7/specfunc/
H A Dlegendre_poly.c425 double y_ell = 0.0; in gsl_sf_legendre_sphPlm_e() local
435 y_ell = (x*y_mmp1*factor1 - (ell+m-1.0)*y_mm*factor2) / (ell-m); in gsl_sf_legendre_sphPlm_e()
437 y_mmp1 = y_ell; in gsl_sf_legendre_sphPlm_e()
444 result->val = y_ell; in gsl_sf_legendre_sphPlm_e()
445 result->err = y_ell_err + (0.5*(l-m) + 1.0) * GSL_DBL_EPSILON * fabs(y_ell); in gsl_sf_legendre_sphPlm_e()
638 double y_ell; in gsl_sf_legendre_sphPlm_array() local
650 y_ell = (x*y_mmp1*factor1 - (ell+m-1)*y_mm*factor2) / (ell-m); in gsl_sf_legendre_sphPlm_array()
652 y_mmp1 = y_ell; in gsl_sf_legendre_sphPlm_array()
653 result_array[ell-m] = y_ell; in gsl_sf_legendre_sphPlm_array()
H A DChangeLog623 p_ell, y_ell to zero to avoid warning
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/src/base/
H A DossimEllipsoid.cpp620 const double y_ell = z / ( 1.0 + t/b2 ); in XYZToLatLonHeight() local
622 height = ( d - x_ell ) * x_ell/a2 + ( z - y_ell ) * y_ell/b2; in XYZToLatLonHeight()
623 height /= hypot( x_ell/a2 , y_ell/b2 ); in XYZToLatLonHeight()
625 lat = atan2( y_ell/b2, x_ell/a2 ) * DEG_PER_RAD; in XYZToLatLonHeight()