10-30-2007 09:37 AM
10-30-2007 10:08 AM
If performance is an issue, arrays of strings should be avoided like the plague.
Your theory is about allocating large string and work within that string.
There are a couple of string operators that will operate like the array operations.
AS long as you don't brach the wire you should be in good shape.
If you code up a bench marking VI, you should see major differences in performance.
Ben
10-30-2007 10:26 AM
10-31-2007 10:55 AM
Hi Ben, hi altenbach,
thank you for the information, right now, I consider using 2D arrays of U8 instead of strings.
Happy Halloween!
Oli
10-31-2007 11:05 AM
Just for your reference: A while ago, Shane suggest the feature of fixed length strings:
http://forums.ni.com/ni/board/message?board.id=features&message.id=67#M67
could be useful!
10-31-2007 12:27 PM
@altenbach wrote:
Maybe you could do all operations on a 2D U8 array "in place".