2.1.16.6.3.2 airy_ai_deriv


Description

Airy function Ai'(x)

Syntax

double airy_ai_deriv( double x )

Parameters

x
[input] the argument x of the function

Return

Returns a value of the derivative of the airy function Ai(x)

Examples

EX1

void airy_ai_deriv_ex1()
{
	double dx[6] = {-10.0,1.0,0.0,1.0,5.0,10.0};
	double dResults[6];
	for(int ii = 0; ii<6 ; ii++)
	{
		dResults[ii] = airy_ai_deriv(dx[ii]);
		printf("%lf:	%lf\n",dx[ii],dResults[ii]);
	}
}

Remark

See Also

airy_ai

Header to Include

origin.h

Reference