Пример #1
0
 def plotBifurcationDiagram(self,
                            bfPoints,
                            bfLabels,
                            legend=True,
                            cmap=None,
                            xlabel=None,
                            ylabel=None,
                            selections=None):
     hdr = tpc.getTelluriumDataColumnHeader(self._data)
     npData = tpc.getNumpyData(self._data)
     tpc.plotBifurcationData(npData, hdr, bfPoints, bfLabels, legend, cmap,
                             xlabel, ylabel, selections)
Пример #2
0
 def __toNumpy (self):
     return tpc.getNumpyData (self._data)
Пример #3
0
 def loadDataSeriesAsNumPy (self, fileName):
     rrDataHandle = tpc.createTelluriumDataFromFile (fileName)
     return tpc.getNumpyData (rrDataHandle)
Пример #4
0
 def plotBifurcationDiagram (self, bfPoints, bfLabels):
     hdr = tpc.getTelluriumDataColumnHeader(self._data)
     npData = tpc.getNumpyData(self._data)
     tpc.plotBifurcationData(npData, hdr, bfPoints, bfLabels)
Пример #5
0
 def plot (self):
     hdr = tpc.getTelluriumDataColumnHeader(self._data)
     npData = tpc.getNumpyData(self._data)
     tpc.plotTelluriumData(npData, hdr)
Пример #6
0
 def __toNumpy(self):
     return tpc.getNumpyData(self._data)
Пример #7
0
 def loadDataSeriesAsNumPy(self, fileName):
     rrDataHandle = tpc.createTelluriumDataFromFile(fileName)
     return tpc.getNumpyData(rrDataHandle)
Пример #8
0
 def plot(self):
     hdr = tpc.getTelluriumDataColumnHeader(self._data)
     npData = tpc.getNumpyData(self._data)
     tpc.plotTelluriumData(npData, hdr)