Minim
core
ugens
analysis
 
Name setLastValue
Examples
None available
Description Sets all values in the last values array to the provided value. If you want to set last values in the different channels of this input to different values, you should use getLastValues to do so. For example:

 ugen.anInput.getLastValues()[0] = 1.f;
 ugen.anInput.getLastValues()[1] = 0.f;
 
Syntax
setLastValue(value);
Parameters
value   float: the value to set all last values to
Returns None
Usage Web & Application
Related