public class MapLookup2D
extends java.lang.Object
| Constructor and Description |
|---|
MapLookup2D() |
| Modifier and Type | Method and Description |
|---|---|
void |
insertNewPoint(double x_val,
double y_val)
Insert a new X/Y point into the Map
|
double |
lookupVal(double req_x_val)
Extract the value of the mapped function at a specific point.
|
static void |
main(java.lang.String[] args)
Main function - used for desktop testing of functionality.
|
public void insertNewPoint(double x_val,
double y_val)
x_val - y_val - public double lookupVal(double req_x_val)
req_x_val - Input point to request the value of the function at.public static void main(java.lang.String[] args)
args -