TabulatedFunction

class simtk.openmm.openmm.TabulatedFunction(*args, **kwargs)

A TabulatedFunction uses a set of tabulated values to define a mathematical function. It can be used by various custom forces.

TabulatedFunction is an abstract class with concrete subclasses for more specific types of functions. There are subclasses for:

  • 1, 2, and 3 dimensional functions. The dimensionality of a function means the number of input arguments it takes.
  • Continuous and discrete functions. A continuous function is interpolated by fitting a natural cubic spline to the tabulated values. A discrete function is only defined for integer values of its arguments (that is, at the tabulated points), and does not try to interpolate between them. Discrete function can be evaluated more quickly than continuous ones.
__init__(*args, **kwargs)

Methods

Copy((self) -> TabulatedFunction)
__init__(*args, **kwargs)
Copy(self) → TabulatedFunction
__delattr__

x.__delattr__(‘name’) <==> del x.name

__format__()

default object formatter

__getattribute__

x.__getattribute__(‘name’) <==> x.name

__hash__
__reduce__()

helper for pickle

__reduce_ex__()

helper for pickle

__sizeof__() → int

size of object in memory, in bytes

__str__