pytvx.TvfPow

class pytvx.TvfPow(base: Union[float, Tvf, PyTvf], exp: Union[float, Tvf, PyTvf], modulo: None)[source]

Bases: pytvx.PyTvf

A PyTvf that implements the pow function applied to two PyTvf objects.

The value at a given time is the same as the result of the standard pow function on the values of base and exp at that time.

Parameters
  • base – The base.

  • exp – The exponent.

  • modulo – The modulus.

Methods

indent_repr

__call__(t: float) float[source]

Compute the floating point value of this object at a given time.

Parameters

t – The time at which to evaluate.

Returns

The value at time t.

Return type

float