blob: 4d3dfebd54073bbd06859d24f87e0cc4110588c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
-- File: SingularityAna_PolyStyle.cdl
-- Created: Fri Aug 23 10:33:30 1996
-- Author: Benoit TANNIOU
-- <bt1@sgi65>
---Copyright: Matra Datavision 1996
private class NormalPolyDef from CSLib
inherits FunctionWithDerivative from math
uses
Array1OfReal from TColStd
is
Create(k0:Integer; li:Array1OfReal) returns NormalPolyDef from CSLib;
Value(me: in out; X: Real; F: out Real)
---Purpose: computes the value <F>of the function for the variable <X>.
-- Returns True if the calculation were successfully done,
-- False otherwise.
returns Boolean;
Derivative(me: in out; X: Real; D: out Real)
---Purpose: computes the derivative <D> of the function
-- for the variable <X>.
-- Returns True if the calculation were successfully done,
-- False otherwise.
returns Boolean;
Values(me: in out; X: Real; F, D: out Real)
---Purpose: computes the value <F> and the derivative <D> of the
-- function for the variable <X>.
-- Returns True if the calculation were successfully done,
-- False otherwise.
returns Boolean;
fields
myK0: Integer from Standard;
myTABli: Array1OfReal from TColStd;
end NormalPolyDef;
|