|
|||||||||
PREV CLASS NEXT CLASS | All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjhplot.VHolder
public class VHolder
A class to transform any HPlot container (H1D,H2D,P1D..) to a vector for further manipulations
Constructor Summary | |
---|---|
VHolder(DataHolder dh,
boolean format)
Get Vectors from multidimensional data container |
|
VHolder(F1D ff,
boolean format)
Create a VHolder object with F1D function |
|
VHolder(H1D hh,
boolean format)
Create a VHolder object with H1D histogram |
|
VHolder(P1D hh,
boolean format)
Create a VHolder object from P1D container. |
|
VHolder(P2D hh,
boolean format)
Create a VHolder object from P2D container. |
|
VHolder(P3D hh,
boolean format)
Create a VHolder object from P3D container. |
Method Summary | |
---|---|
int |
dimen()
Return the dimension of the data |
java.util.Vector |
getData()
Return a Vector with the data (rows of the dimension obtained by calling dimen()). |
java.util.Vector<java.lang.String> |
getNames()
Return Vector with the names |
java.lang.String |
getTitle()
Get title of the container |
int |
size()
Return the size of the data, i.e. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public VHolder(H1D hh, boolean format)
hh
- Input histogramformat
- if true, all elements will be formatted to strings. using
scientific format ##.####E00. If false, data will not be
modified and converted to stringpublic VHolder(F1D ff, boolean format)
ff
- Input functionformat
- if true, all elements will be formatted to scientific format
##.####E00. If false, data will notbe modified and converted
to stringpublic VHolder(DataHolder dh, boolean format)
dh
- Input dataformat
- if true, all elements will be formatted to scientific format
##.####E00. If false, data will notbe modified and converted
to stringpublic VHolder(P1D hh, boolean format)
hh
- Input P1D containerformat
- if true, all elements will be formatted to scientific format
(##.####E00). If false, the data will not be modified.public VHolder(P2D hh, boolean format)
hh
- Input P2D containerformat
- if true, all elements will be formatted to scientific format
(##.####E00). If false, the data will not be modified.public VHolder(P3D hh, boolean format)
hh
- Input P3D containerformat
- if true, all elements will be formatted to scientific format
(##.####E00). If false, the data will not be modified.Method Detail |
---|
public java.lang.String getTitle()
public java.util.Vector<java.lang.String> getNames()
public java.util.Vector getData()
public int dimen()
public int size()
|
|||||||||
PREV CLASS NEXT CLASS | All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |