I have forgotten
my Password

Or login with:

  • Facebookhttp://facebook.com/
  • Googlehttps://www.google.com/accounts/o8/id
  • Yahoohttps://me.yahoo.com
get GPL
COST (GBP)
this unit 5.62
sub units 6.12
+
0
MathsSpecialBesselY

Y0

Bessel function of second kind with zero order.
Controller: CodeCogs

Dependents

Info

Interface

C++
Excel

Y0

 
doubleY0doublex )
A Bessel function of the second kind with zero order \inline  Y_0(x) is sometimes also denoted using \inline N_n(x) and is a solution to differential equation

with \inline I_0(x) being the other solution. See Maths/Special/Bessel/I/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.288195

Parameters

xinput

Authors

Stephen L. Moshier. Copyright 1984, 1987, 2000,
Documentation by Nick Owens
Source Code

Source code is available when you agree to a GP Licence or buy a Commercial Licence.

Not a member, then Register with CodeCogs. Already a Member, then Login.