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 1.25
sub units 1.75
+
0
MathsSpecialBesselY

Y1

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

Dependents

Info

Interface

C++
Excel

Y1

 
doubleY1doublex )
A Bessel function of the second kind with order one \inline  Y_1(x) is a solution to differential equation

with \inline  I_1(x) and \inline I_{-1}(x) being the other solutions. 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/y1.h>
int main()
{
  for(double x=1; x<7; x+=1)
  {
    double y=Maths::Special::Bessel::Y::Y1(x);
    printf("\n Y1(%.1lf)=%lf", x,y);
  }
  return 0;
}
Output:
Y1(1.0)=-0.781213
Y1(2.0)=-0.107032
Y1(3.0)=0.324674
Y1(4.0)=0.397926
Y1(5.0)=0.147863
Y1(6.0)=-0.175010

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.