Topic
Concatenating Hundreds (!) of signals
Page d'accueil ' Communauté ' Généralités ' Concaténation de centaines ( !) de signaux
- Ce sujet contient 2 réponses, 2 participants et a été mis à jour pour la dernière fois par John Huxtable, le il y a 15 années et 1 mois.
-
AuteurMessages
-
09.04.2010 à 22:00 #33761John HuxtableParticipant
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 à 22:00 #33763John HuxtableParticipantI 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 à 00:47 #33762Bernhard KantzParticipantPlease use the indirection operator $$.
Example:
[code]
For i = 2 To 200 Do
$”Data” : String i : “\signal0″$
End
[/code] -
AuteurMessages
- Vous devez être connecté pour répondre à ce sujet.