|
virtual | ~Series () |
|
void | add (double y) |
|
template<typename SIGNAL , typename... Args> |
void | plot (Generic::Function< SIGNAL, Args... > &f, const Axis &x_axis) |
|
template<typename RETURN , typename ARG > |
void | plot (RETURN(*f)(ARG), const Axis &x_axis) |
|
bool | operator== (const Series &in) const |
|
bool | operator!= (const Series &in) const |
|
void | clear () |
|
void | input () override |
|
virtual const SIGNAL & | input () const |
|
virtual void | input (const SIGNAL &source) |
|
unsigned int | size () const |
| The current number of items in the array.
|
|
void | add (const Point &item) |
| Add the specified item to the end of the array.
|
|
Point * | add () |
| Add a blank item to the end of the array, returning a pointer that allows the item to be modified.
|
|
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;.
|
|
Point & | operator[] (int index) |
| Returns a reference to the array item at the given index.
|
|
const Point & | operator[] (int index) const |
| Returns a read-only reference to the array item at the given index.
|
|
virtual void | input (const signal &source) |
|
virtual void | operator<< (const signal &source) |
|
template<int SIZE>
struct klang::Generic::Graph< SIZE >::Series
Definition at line 1652 of file klang.h.