liebharc / basic_dsp

Basic DSP vector operations for Rust.
Apache License 2.0
43 stars 5 forks source link

Temp array on demand #15

Closed liebharc closed 8 years ago

liebharc commented 8 years ago

Every function should check that the temp array is available with sufficient size. Then we could have a performance option which only creates the temp array if it's required. Right now the temp array will always be created and it depends on how the vector is used if this makes sense or not.