I have acquired large amounts of data that have been saved as wav files. Now I must open these wav files and build a 2d array so that I can output these values to a pci-6733 analog output board. I've tried a couple of different methods, but neither produce the results I want. If I put my code is a loop, I end up with a signal that occasionally flat lines even though I am double-buffering. If I open the files and build the aray, and then output the data, the resultant output is continuous, but the time it takes to assemble the data into the array is unacceptable. I've heard that the build array function is slow, so I've also tried initializing my array then replacing an array subset, but this is still too slow. Does an
yone have any suggestions as to how I can handle this?