Topic
Concatenating Hundreds (!) of signals
Startseite ' Community ' Allgemein ' Concatenating Hundreds (!) of signals
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 15 Jahren, 1 Monaten von John Huxtable aktualisiert.
-
AutorBeiträge
-
09.04.2010 um 22:00 Uhr #33761John HuxtableTeilnehmer
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:’dataisignal0’
endHow do I combine strings and numbers in order to execute this concatenation?
09.04.2010 um 22:00 Uhr #33763John HuxtableTeilnehmerI 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:’dataisignal0’
endHow do I combine strings and numbers in order to execute this concatenation?
10.04.2010 um 00:47 Uhr #33762Bernhard KantzTeilnehmerPlease use the indirection operator $$.
Example:
[code]
For i = 2 To 200 Do
$”Data” : String i : “\signal0″$
End
[/code] -
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.