Quote:
Originally Posted by Greg McKaskle
If you are looking to avoid resizing, you can use the init or reshape array blocks to allocate in advance, and then use array replace to update a particular element. LV has some features for bounded and fixed size arrays, but honestly, I've never had much luck using them.
The other approach is to not use arrays as much. The signal processing palette has a point-by-point filter, and the chart has an internal circular buffer, so you can then wire a single point and any storage is private to those areas that need it.
Greg McKaskle
|
I just switched to a point-by-point filter and eliminated all arrays. It's clearly way lighter, I could implement a 5th order at 1kHz with no lag.
Sorry to insist, but have I understood correctly that there's no way to get a microsecond timer in my OS (win7 64)?