Main object. Get an instance of this to do your work.
|
__init__(self,
directory=' doc ' )
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
initGnuplot2D(self,
filename=' plot ' ,
xlabel=None,
ylabel=None,
title=None,
xrange_=None,
yrange=None,
x_logscale=0,
y_logscale=0) |
source code
|
|
|
initGnuplot3D(self,
filename=' plot3D ' ,
xlabel=None,
ylabel=None,
zlabel=None,
title=None,
xrange_=None,
yrange=None,
zrange=None,
x_logscale=0,
y_logscale=0,
z_logscale=0) |
source code
|
|
|
|
|
|
|
createDoc(self,
system)
create plots of all variables defined in the given system. |
source code
|
|
|
createDocVariable(self,
v,
name,
x_logscale=0,
y_logscale=0)
Creates a 2D plot of a variable |
source code
|
|
|
createDocSets(self,
sets,
name,
x_logscale=0,
y_logscale=0,
description=None,
units=None)
Creates a 2D plot of dict of sets |
source code
|
|
|
create2DPlot(self,
system,
x_name,
y_name,
input_dict=None,
output_dict=None,
x_logscale=0,
y_logscale=0)
Creates a 2D plot of an input variable and an output variable. |
source code
|
|
|
create3DPlot(self,
system,
x_name,
y_name,
z_name,
input_dict=None,
output_dict=None,
x_logscale=0,
y_logscale=0,
z_logscale=0)
Creates a 3D plot of 2 input variables and an output variable. |
source code
|
|
|
create3DPlot_adjective(self,
system,
x_name,
y_name,
z_name,
adjective,
input_dict=None,
output_dict=None,
x_logscale=0,
y_logscale=0,
z_logscale=0)
Creates a 3D plot of 2 input variables and an adjective of the output
variable. |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|