E04.E04BB_FUNCT Delegate
関数リスト一覧   NagLibrary Namespaceへ  ライブラリイントロダクション  本ヘルプドキュメントのchm形式版

You must supply this method to calculate the values of Fx and dF dx  at any point x in a,b.
It should be tested separately before being used in conjunction with e04bb.

Syntax

C#
public delegate void E04BB_FUNCT(
	double xc,
	out double fc,
	out double gc
)
Visual Basic (Declaration)
Public Delegate Sub E04BB_FUNCT ( _
	xc As Double, _
	<OutAttribute> ByRef fc As Double, _
	<OutAttribute> ByRef gc As Double _
)
Visual C++
public delegate void E04BB_FUNCT(
	double xc, 
	[OutAttribute] double% fc, 
	[OutAttribute] double% gc
)
F#
type E04BB_FUNCT = 
    delegate of 
        xc:float * 
        fc:float byref * 
        gc:float byref -> unit

Parameters

xc
Type: System..::.Double
On entry: the point x at which the values of F and dF dx  are required.
fc
Type: System..::.Double %
On exit: must be set to the value of the function F at the current point x.
gc
Type: System..::.Double %
On exit: must be set to the value of the first derivative dF dx  at the current point x.

See Also