The sink is a waveform datatype, so I'm not sure why you're using a
Build Array to create an array of whatever is coming out of the spigot. The source is a cluster, so a
Build Array makes even less sense. The waveform datatype is not a cluster. It does consist of 3 elements: start time, delta t, and array of values. Your source cluster consists of 3 elements: start frequency, something else (not labeled) and an array of values. Know what the "something else" is? I'm guessing it's probably the frequency step.
Given that, I don't think you want to use the waveform datatype since that's intended to be used with timed data. You could shove it into the waveform datatype by converting the start frequency to a timestamp:

When you read the file you can do the opposite.
An alternative way is to simply write the data out as a binary file. Or, you can write it out to a text file by prepending the two individual elements and then just writing out to a spreadsheet-format-like file:

Message Edited by smercurio_fc on
06-25-2008 02:46 PM