|
|||||||||
PREV CLASS NEXT CLASS | All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjhplot.DrawOptions
jhplot.F2D
public class F2D
Create 2D function.
Constructor Summary | |
---|---|
F2D(java.lang.String name,
double Xmin,
double Xmax,
double Ymin,
double Ymax)
Create a function in 2D. |
Method Summary | |
---|---|
double |
getMaxX()
Get Max value in X |
double |
getMaxY()
Get Max value in Y |
double |
getMinX()
Get Min value in X |
double |
getMinY()
Get Min value in Y |
int |
getPoints()
Get the number of points for evaluation of a function |
java.lang.String |
getTitle()
Get the title |
void |
setMaxX(double max)
Set Max value in X |
void |
setMaxY(double max)
Set Max value in Y |
void |
setMinX(double min)
Set Min in X |
void |
setMinY(double min)
Set Min value in Y |
void |
setPoints(int bins)
Get the number of points |
void |
setTitle(java.lang.String title)
Set a title |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public F2D(java.lang.String name, double Xmin, double Xmax, double Ymin, double Ymax)
Known Bugs This class is not fool proof. If the answer is wrong then use the parenthesis to force the order of evaluation. The most likely place this will be needed is in the use of the power command. The exponent is not evaluated correctly if it begins with a unary operator.
name
- String representing the function.Xmin
- Min value in XXmax
- Max value in XYmin
- Min value in YYmax
- Max value in YMethod Detail |
---|
public void setTitle(java.lang.String title)
setTitle
in class DrawOptions
title
- Titlepublic java.lang.String getTitle()
getTitle
in class DrawOptions
public void setMinX(double min)
min
- Min valuepublic double getMinX()
public void setMinY(double min)
min
- Min value in Ypublic double getMinY()
public void setMaxX(double max)
max
- Max value in Xpublic double getMaxX()
public void setMaxY(double max)
max
- Max value in Ypublic double getMaxY()
public void setPoints(int bins)
bins
- Number of pointspublic int getPoints()
|
|||||||||
PREV CLASS NEXT CLASS | All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |