-
FlexPro
- Zoom sur FlexPro
- Fonctionnalités & Options
- Domaines d’application
- Tous les avantages
- Nouveau dans FlexPro 2021
- Testez FlexPro gratuitement
- FlexPro View OEM Freeware
- Conseils d’achat
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produits
- News
- Support
- Société
- Emplois
- Contact
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
Concatenating Hundreds (!) of signals
- This topic has 2 replies, 2 voices, and was last updated 14 years, 7 months ago by John Huxtable.
-
AuthorPosts
-
April 9, 2010 at 10:00 pm #12567John HuxtableMember
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’
endHow do I combine strings and numbers in order to execute this concatenation?
April 9, 2010 at 10:00 pm #8230John HuxtableMemberI 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’
endHow do I combine strings and numbers in order to execute this concatenation?
April 10, 2010 at 12:47 am #8913Bernhard KantzParticipantPlease use the indirection operator $$.
Example:
For i = 2 To 200 Do $"Data" : String i : "\\signal0"$ End
-
AuthorPosts
- You must be logged in to reply to this topic.