Dsl (Digital Simulation Library) for .Net
右辺変数から左辺変数(自分自身の値)を計算するための計算式を与える delegate 宣言です。

名前空間: Dsl
アッセンブリー: Dsl (in Dsl.dll)

構文

C#
public delegate double AtComputeValueAt(
	Processor pr,
	Variable self,
	double time,
	double step
)
Visual Basic
Public Delegate Function AtComputeValueAt ( 
	pr As Processor,
	self As Variable,
	time As Double,
	step As Double
) As Double
Visual C++
public delegate double AtComputeValueAt(
	Processor^ pr, 
	Variable^ self, 
	double time, 
	double step
)

Parameters

pr
タイプ: Dsl..::..Processor
親の Processor オブジェクト
self
タイプ: Dsl..::..Variable
左辺変数(自分自身)
time
タイプ: System..::..Double
計算時の時刻
step
タイプ: System..::..Double
計算時の積分刻み幅

Return Value

タイプ: Double
計算された左辺変数の値

参照