blob: 01f186de4f1106a691647d92377ea879e41a7cd0 (
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
41
42
43
44
45
46
47
48
|
-- File: GeomLib_PolyFunc.cdl
-- Created: Tue Sep 22 16:24:52 1998
-- Author: Philippe MANGINGeomLib_PolyFunc.c
-- <pmn@sgi29>
---Copyright: Matra Datavision 1998
private class PolyFunc from GeomLib inherits FunctionWithDerivative from math
---Purpose: Polynomial Function
uses
Vector from math
is
Create(Coeffs:Vector) returns PolyFunc from GeomLib;
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
is redefined;
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
is redefined;
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
is redefined;
fields
myCoeffs : Vector;
end PolyFunc;
|