[PD] ternary counting

2011-09-08 Thread tim vets
Hello, Does anyone have an example of how to do ternary counting in pd? 00 01 02 10 11 12 20 21 22 ...etc thanks, Tim ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] ternary counting

2011-09-08 Thread Andy Farnell
Try a [div] [mod] chain Four digits base 3 would be base 10 | [t f f]_[mod 3]_ D0 | [div 3] | [t f f]_[mod 3]_ D1 | [div 3] | [t f f]_[mod 3]_ D2 | div 3] | [t f f]_[mod 3]_ D3 | etc. for more digits On Thu, 8 Sep 2011 15:19:03 +0200 tim vets timv...@gmail.com wrote: Hello, Does anyone have

Re: [PD] ternary counting

2011-09-08 Thread tim vets
perfect, thanks :) Tim 2011/9/8 Andy Farnell padawa...@obiwannabe.co.uk Try a [div] [mod] chain Four digits base 3 would be base 10 | [t f f]_[mod 3]_ D0 | [div 3] | [t f f]_[mod 3]_ D1 | [div 3] | [t f f]_[mod 3]_ D2 | div 3] | [t f f]_[mod 3]_ D3 | etc. for more digits

Re: [PD] ternary counting

2011-09-08 Thread Mathieu Bouchard
On Thu, 8 Sep 2011, Andy Farnell wrote: Try a [div] [mod] chain Four digits base 3 would be Also, to have the counting itself in base 3, chain counters that count 0,1,2,0,1,2,0,1,2,... in which each counter adds a 1 to the counter on the left whenever it goes from 2 to 0. This makes a

Re: [PD] ternary counting

2011-09-08 Thread Lorenzo Sutton
On 08/09/2011 15:39, Andy Farnell wrote: Try a [div] [mod] chain Four digits base 3 would be base 10 | [t f f]_[mod 3]_ D0 | [div 3] | [t f f]_[mod 3]_ D1 | [div 3] | [t f f]_[mod 3]_ D2 | div 3] | [t f f]_[mod 3]_ D3 | etc. for more digits On Thu, 8 Sep 2011 15:19:03 +0200 tim