sph_bessel -- <cmath> : 残りの数学関数を拡張浮動小数点数型に対応 #1022

1 · cpprefjp · Feb. 20, 2023, 6:33 a.m.
diff --git a/reference/cmath/sph_bessel.md b/reference/cmath/sph_bessel.md index 6e26a7b1f..ec9ba8c17 100644 --- a/reference/cmath/sph_bessel.md +++ b/reference/cmath/sph_bessel.md @@ -7,15 +7,39 @@ ```cpp namespace std { -float sph_besself(unsigned n, float x); -double sph_bessel(unsigned n, double x); -long double sph_bessell(unsigned n, long double x); + double + sph_bessel(unsigned int n, + double x); // (1) C++17 + floating-point-type + sph_bessel(unsi...