|
| Series * | find (void *function) |
| |
| unsigned int | size () const |
| | The current number of items in the array.
|
| |
| void | add (const Series &item) |
| | Add the specified item to the end of the array.
|
| |
| Series * | add () |
| | Add a blank item to the end of the array, returning a pointer that allows the item to be modified.
|
| |
| void | clear () |
| | Clear the array contents. Only resets the item count, without wiping memory.
|
| |
| float | max () const |
| | Find the maximum value in the array.
|
| |
| float | mean () const |
| | Find the mean average of values in the array.
|
| |
| float | rms () const |
| | Find the root mean squared (RMS) average of values in the array.
|
| |
| void | normalise (float target=1.f, int mode=Peak) |
| | Normalises values in the array to the specified target, based on peak, mean, or RMS value;.
|
| |
| Series & | operator[] (int index) |
| | Returns a reference to the array item at the given index.
|
| |
| const Series & | operator[] (int index) const |
| | Returns a read-only reference to the array item at the given index.
|
| |
template<int SIZE>
struct klang::Generic::Graph< SIZE >::Data
Definition at line 1779 of file klang.h.