Csound Csound-dev Csound-tekno Search About

[Csnd] resizing tables..

Date2014-03-14 12:01
FromRory 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?

    ;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

Unfortunately my new ft3 is empty. I tried John's ftresize opcodes but they were causing a few issues for me.

Date2014-03-14 13:40
FromRory Walsh
SubjectRe: [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:
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/
Send bugs reports to the Sourceforge bug trackers
csound6:
            https://sourceforge.net/p/csound/tickets/
csound5:
            https://sourceforge.net/p/csound/bugs/
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"




Date2014-03-14 13:41
Frommskala@ansuz.sooke.bc.ca
SubjectRe: [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/