Create an Integer from Binary (toggle)
I would like to create an integer number with four toggle objects (nibble) ... How do I make the most ellegant?
Max Patch
Copy patch and select New From Clipboard in Max.
Thanks a lot, Rick.
as one decimal:
expr $i1*1000+$i2*100+$i3*10+$i4
as individual bits:
pak 0 0 0 0
Or, for maximal incomprehensibility:
Max Patch
Copy patch and select New From Clipboard in Max.