03-23-2009 05:10 AM
03-23-2009 06:10 AM
You can't do that with the in-place memory operators?
Could you post a code example to demosntrate whay you wna to do but can't?
Confused,
Ben
03-23-2009 06:33 AM - edited 03-23-2009 06:36 AM
So, why isn't there a node that has one source array (in), one destination array (in/out), an index (in) and length (in)?
There is:
Blog for (mostly LabVIEW) programmers: Tips And Tricks
03-23-2009 07:25 AM - edited 03-23-2009 07:27 AM
This is very slow, compared to how C does it. This is because the array subset has to be created, before it is inserted into the other array.
Regards,
Wiebe.
03-23-2009 07:40 AM - edited 03-23-2009 07:40 AM
..and this is what I would like to have...
So instead of:
Creating a new buffer allocation
The subset is copied to this new buffer allocation
Copy the new buffer to the destination array
We can simply:
Move the data from source to destination.