Enables operators for an assumed complex signal.
Truncates or extends the first operand to
match the length of b
.
Truncates or extends the first operand to
match the length of b
. This uses
the SecondArg
operator with operands reversed.
Polls the output values of this graph element, and prints the result to the console.
Polls the output values of this graph element, and prints the result to the console.
This is a convenient method for wrapping this graph element in a Poll
UGen.
a signal to trigger the printing. If this is a constant, it is
interpreted as a period and a Metro
generator with
this period is used.
a string to print along with the values, in order to identify
different polls. Using the special label "#auto"
(default) will generated
automatic useful labels using information from the polled graph element
Warning: Unlike a normal power operation, the signum of the left operand is always preserved.
Warning: Unlike a normal power operation, the signum of the
left operand is always preserved. I.e. DC.kr(-0.5).pow(2)
will
not output 0.25
but -0.25
. This is to avoid problems with
floating point noise and negative input numbers, so
DC.kr(-0.5).pow(2.001)
does not result in a NaN
, for example.