-
FlexPro
- At a Glance
- Features & Options
- Applications
- All Advantages
- What’s New in FlexPro 2021
- Try FlexPro For Free
- FlexPro View OEM Freeware
- Buying Guide
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Products
- News
- Support
- Company
- Contact
- Login
- Language
- +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.