Forum FlexPro – Discuss your topic!

Concatenating Hundreds (!) of signals

Home > Community > General > Concatenating Hundreds (!) of signals

Ansicht von 3 Beiträgen - 1 bis 3 (von insgesamt 3)
  • Autor
    Beiträge
  • #12567
    John HuxtableJohn Huxtable
    Mitglied

    I have over 300 short duration events of one channel imported from Dewesoft. Each is stored in a separate folder called Data’i’.

    I have copied the first signal as a base and wish to concatenate the remaining on to it (not too worried about gaps in time, so intend to use ‘:’).

    I think the way to do this is using a “for” loop, something like:

    for i=2 to 300
    ‘Base:’\datai\signal0’
    end

    How do I combine strings and numbers in order to execute this concatenation?

    #8230
    John HuxtableJohn Huxtable
    Mitglied

    I have over 300 short duration events of one channel imported from Dewesoft. Each is stored in a separate folder called Data’i’.

    I have copied the first signal as a base and wish to concatenate the remaining on to it (not too worried about gaps in time, so intend to use ‘:’).

    I think the way to do this is using a “for” loop, something like:

    for i=2 to 300
    ‘Base:’\datai\signal0’
    end

    How do I combine strings and numbers in order to execute this concatenation?

    #8913
    Bernhard KantzBernhard Kantz
    Teilnehmer

    Please use the indirection operator $$.

    Example:

    
    For i = 2 To 200 Do
       $"Data" : String i : "\\signal0"$ 
    End
    

    support@weisang.com

Ansicht von 3 Beiträgen - 1 bis 3 (von insgesamt 3)
  • Du musst angemeldet sein, um auf dieses Thema antworten zu können.