[Csnd] resizing tables..
Date | 2014-03-14 12:01 |
From | Rory Walsh |
Subject | [Csnd] resizing tables.. |
Does this logic seem Ok? I create a temporary table, copy all contents from ft3 to it, rebuild ft3 with a new size, and then copy everything from the temp table to it? Unfortunately my new ft3 is empty. I tried John's ftresize opcodes but they were causing a few issues for me. ;create temp array to hold existing samples i1 ftgentmp 905, 0, iSize, 7, 0, iSize, 0 ;copy existing samples to table i1 tablecopy i1, 3 ;rebuild function ftable3 gi1 ftgen 3,0,iSize, 7, 0, iSize, 0 ;copy sample from temp table to ftable3 tablecopy gi1, 905 |
Date | 2014-03-14 13:40 |
From | Rory Walsh |
Subject | Re: [Csnd] resizing tables.. |
Doh! That's probably it. I'm afraid however that even if it does work with tableicopy, the operation is too slow on large tables. I'm going to try John's table resizing opcodes and see if they can't do it quicker. They would save me having to do any copying at all. On 14 March 2014 13:41, <mskala@ansuz.sooke.bc.ca> wrote:
|
Date | 2014-03-14 13:41 |
From | mskala@ansuz.sooke.bc.ca |
Subject | Re: [Csnd] resizing tables.. |
On Fri, 14 Mar 2014, Rory Walsh wrote: > i1 ftgentmp 905, 0, iSize, 7, 0, iSize, 0 > tablecopy i1, 3 > gi1 ftgen 3,0,iSize, 7, 0, iSize, 0 > tablecopy gi1, 905 > > Unfortunately my new ft3 is empty. I tried John's ftresize opcodes but they > were causing a few issues for me. tablecopy is a performance-time opcode, whereas ftgen(tmp) is init-time. Try tableicopy. -- Matthew Skala mskala@ansuz.sooke.bc.ca People before principles. http://ansuz.sooke.bc.ca/ |