the input signal
a constant offset added to the input
a constant multiplier that scales the input
the power to raise the input to
a constant offset added to the input
a constant multiplier that scales the input
the input signal
the power to raise the input to
Raise a node to a fixed power.
Raise a node to a fixed power. Cog has two pow() function signatures corresponding to both integer and non-integer powers. The integer case is detected here and special-cased (instead of having a separate PowN node for this).
If the power n
is anything other than a positive integer, make sure the inputs
are always positive or NaNs will result.
the input signal
the power to raise the input to
Function that takes an input X and outputs (A + B*X)^N. Cog has two pow() function signatures corresponding to both integer and non-integer powers. The integer case for N is detected here and special-cased (instead of having a separate node for this).
If N is other than a positive integer, be aware that you may need to ensure that the A + B*X term is always positive to avoid NaNs from killing the model state.
the input signal
a constant offset added to the input
a constant multiplier that scales the input
the power to raise the input to