using multiple * objects

djstumerch's icon

Hi I ve created this patch which uses wavetable synthesis on audio samples, after attaching a number box which can set the BPM by diving it by 60 and sending it to the phasor object, I was trying to incorporate various multiples of this output by using the * object although it does not seem to be responding.

Any suggestions are much appreciated.

1439.wavetable_audio_arpp.maxpat
Max Patch
Christopher Dobrian's icon
Max Patch
Copy patch and select New From Clipboard in Max.

You need to put a decimal point in the argument of the * object if you want it to do floating-point multiplication. Otherwise it does integer multiplication, truncating (chopping off) the fractional part of all numbers before multiplying. (See Max tutorials 3 and 5.)

djstumerch's icon

Ah thanks