All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----jDisco.Table
A Table-object represents a function table.
An entry (x,y) is added to the table
by calling add(x,y). The entries may be added in arbitrary order.
The x-es must be distinct, but need not be uniformly spaced.
A call value(x) returns the
If x is greater than the maximum
x-value of the table, xMax, then
value(x) = value(xMax).
Table()
add(double)
add(double, double)
add(Variable)
add(Variable, Variable)
print()
print(String)
show()
show(String)
value(double)
Table
public Table()
add
public void add(double x,
double y)
add
public void add(double y)
add
public void add(jDisco.Variable v)
add
public void add(jDisco.Variable v1,
jDisco.Variable v2)
value
public double value(double x)
print
public void print(java.lang.String heading)
print
public void print()
show
public void show(java.lang.String title)
show
public void show()
All Packages Class Hierarchy This Package Previous Next Index