FUNCTION
Y0
Bessel function of second kind with zero order.
You're viewing an older version of this page (#171). View the current version.
Interface
#include <codecogs/maths/special/bessel/y/y0.h>
using namespace Maths::Special::Bessel::Y;
A Bessel function of the second kind with zero order is sometimes also denoted using
and is a solution to differential equation
(1)
with being the other solution. See i
This solution has a regular singularity at 0.
References
Cephes Math Library Release 2.8: June, 2000
Example 1
#include <stdio.h>
#include <codecogs/maths/special/bessel/y/y0.h>
int main()
{
for(double x=1; x<7; x+=1)
{
double y=Maths::Special::Bessel::Y::Y0(x);
printf("\n Y0(%.1lf)=%lf", x,y);
}
return 0;
}Output:
Y0(1.0)=0.088257
Y0(2.0)=0.510376
Y0(3.0)=0.376850
Y0(4.0)=-0.016941
Y0(5.0)=-0.308518
Y0(6.0)=-0.288195Parameters
x
input
Interactive Calculator
x
Result
Computing…
Set a range above first to export a graph.
This function's source code is only visible to registered users — documentation and the calculator above are free to use either way. Sign in to see it.