07-31-2005 04:27 PM
07-31-2005 05:11 PM
You have 2 basic options - You can use a graph and hold 5 1D arrays, replacing the first element and rotating the array each time. If you do this with a shift register, it should satisfy your requirements (example).
The other option is to use a chart. A chart only requires that you give it the new data point (or a cluster of 5 in your case) and it holds the rest in memory. A chart requires a constant distance between all points (Multiplier) and that you give it a starting X value (Offset). You can do this by creating a property node for the chart and wiring in the values before you start.
You can parse the incoming data and build it into a time cluster, which you can convert to a timestamp, like so:
The functions can be found in the Time & Dialog palette.
Search the Example Finder (Help>>Find Example) to see some of the other stuff.