Quantcast
Channel: LabWindows/CVI topics
Viewing all articles
Browse latest Browse all 5339

Which is faster? Fmt/Scan or Advanced Analysis Library

$
0
0

I want to extract (double) array data from a large array into separate arrays for processing in a loop while still acquiring data off a daq card.

 

For those operations that are suitably used with Fmt and Scan, would these be better / faster than using the analysis library functions?

 

For example, which of the following would be the better choice for moving an array subset of 100 elements starting at element 200 ?

 

count = 100;

i = 2;

====================================================

   Subset1D (InBuffer, BufferSize, i*count, count, OutBuffer);

 

OR

 

  Fmt(OutBuffer,   "%*f<%*f[i*]", count, count, i*count, InBuffer);

====================================================


Viewing all articles
Browse latest Browse all 5339

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>