|
ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
|
C++ version of gsl_fft_complex_wavetable_float functions. More...
#include <fft_complex_float.hpp>

Public Member Functions | |
| wavetable () | |
| The default constructor is only really useful for assigning to. More... | |
| wavetable (size_t const n) | |
| The default constructor creates a new workspace of size n. More... | |
| wavetable (gsl_fft_complex_wavetable_float *v) | |
| Could construct from a gsl_fft_complex_wavetable_float. More... | |
| wavetable (wavetable const &v) | |
| The copy constructor. More... | |
| wavetable & | operator= (wavetable const &v) |
| The assignment operator. More... | |
| wavetable | clone () const |
| The clone function. More... | |
| ~wavetable () | |
| The destructor only deletes the pointers if count reaches zero. More... | |
| wavetable (wavetable &&v) | |
| Move constructor. More... | |
| wavetable & | operator= (wavetable &&v) |
| Move operator. More... | |
| bool | operator== (wavetable const &v) const |
| Two wavetable are identically equal if their elements are identical. More... | |
| bool | operator!= (wavetable const &v) const |
| Two wavetable are different equal if their elements are not identical. More... | |
| bool | operator< (wavetable const &v) const |
| A container needs to define an ordering for sorting. More... | |
| bool | operator> (wavetable const &v) const |
| A container needs to define an ordering for sorting. More... | |
| bool | operator<= (wavetable const &v) const |
| A container needs to define an ordering for sorting. More... | |
| bool | operator>= (wavetable const &v) const |
| A container needs to define an ordering for sorting. More... | |
| bool | empty () const |
| Find if the wavetable is empty. More... | |
| void | swap (wavetable &v) |
| Swap two wavetable. More... | |
| gsl_fft_complex_wavetable_float * | get () const |
| Get the gsl_fft_complex_wavetable_float. More... | |
| bool | unique () const |
| Find if this is the only object sharing the gsl_fft_complex_wavetable_float. More... | |
| size_t | use_count () const |
| Find how many workspace objects share this pointer. More... | |
| operator bool () const | |
| Allow conversion to bool. More... | |
Private Attributes | |
| gsl_fft_complex_wavetable_float * | ccgsl_pointer |
| The shared pointer. More... | |
| size_t * | count |
| The shared reference count. More... | |
C++ version of gsl_fft_complex_wavetable_float functions.
Definition at line 425 of file fft_complex_float.hpp.
|
inline |
The default constructor is only really useful for assigning to.
Definition at line 430 of file fft_complex_float.hpp.
References ccgsl_pointer, and count.
Referenced by operator=().
|
inlineexplicit |
The default constructor creates a new workspace of size n.
| n | The size of the workspace. |
Definition at line 440 of file fft_complex_float.hpp.
References ccgsl_pointer, count, and gsl::rstat::n().
|
inlineexplicit |
Could construct from a gsl_fft_complex_wavetable_float.
This is not usually a good idea. In this case you should not use gsl_fft_complex_wavetable_float_free() to deallocate the memory.
| v | The wavetable |
Definition at line 456 of file fft_complex_float.hpp.
References ccgsl_pointer, and count.
|
inline |
The copy constructor.
This creates a new reference to the workspace.
| v | The wavetable to copy. |
Definition at line 467 of file fft_complex_float.hpp.
References ccgsl_pointer, and count.
|
inline |
The destructor only deletes the pointers if count reaches zero.
Definition at line 501 of file fft_complex_float.hpp.
References ccgsl_pointer, and count.
|
inline |
Move constructor.
| v | The wavetable to move. |
Definition at line 513 of file fft_complex_float.hpp.
References count.
|
inline |
The clone function.
Use this if you want a copy of the wavetable that does not share the underlying data.
Definition at line 488 of file fft_complex_float.hpp.
References ccgsl_pointer.
|
inline |
Find if the wavetable is empty.
true if has size zero; otherwise false Definition at line 590 of file fft_complex_float.hpp.
References ccgsl_pointer.
|
inline |
Get the gsl_fft_complex_wavetable_float.
Definition at line 616 of file fft_complex_float.hpp.
References ccgsl_pointer.
Referenced by gsl::fft::complex_float::backward(), gsl::fft::complex_float::forward(), gsl::fft::complex_float::inverse(), and gsl::fft::complex_float::transform().
|
inlineexplicit |
Allow conversion to bool.
true or false according as this contains a pointer to a gsl_fft_complex_wavetable_float Definition at line 636 of file fft_complex_float.hpp.
References ccgsl_pointer.
|
inline |
Two wavetable are different equal if their elements are not identical.
| v | The wavetable to be compared with this |
false or true according as this and v have identical elements or not Definition at line 543 of file fft_complex_float.hpp.
References operator==().
|
inline |
A container needs to define an ordering for sorting.
This uses standard lexicographical ordering and so is not useful, for eaxmple, for checking, that a wavetable is nonnegative.
| v | The wavetable to be compared with this |
false or true according as this is less than v lexicographically Definition at line 555 of file fft_complex_float.hpp.
References ccgsl_pointer.
|
inline |
A container needs to define an ordering for sorting.
This uses standard lexicographical ordering and so is not useful, for eaxmple, for checking, that a wavetable is nonnegative.
| v | The wavetable to be compared with this |
false or true according as this is less than or equal to v lexicographically Definition at line 575 of file fft_complex_float.hpp.
References ccgsl_pointer.
Move operator.
| v | The wavetable to move. |
Definition at line 522 of file fft_complex_float.hpp.
References wavetable().
The assignment operator.
This copies elementwise.
| v | The wavetable to copy |
Definition at line 474 of file fft_complex_float.hpp.
References ccgsl_pointer, and count.
|
inline |
Two wavetable are identically equal if their elements are identical.
| v | The wavetable to be compared with this |
true or false according as this and v have identical elements or not Definition at line 535 of file fft_complex_float.hpp.
References ccgsl_pointer.
Referenced by operator!=().
|
inline |
A container needs to define an ordering for sorting.
This uses standard lexicographical ordering and so is not useful, for eaxmple, for checking, that a wavetable is nonnegative.
| v | The wavetable to be compared with this |
false or true according as this is greater than v lexicographically Definition at line 565 of file fft_complex_float.hpp.
References ccgsl_pointer.
|
inline |
A container needs to define an ordering for sorting.
This uses standard lexicographical ordering and so is not useful, for eaxmple, for checking, that a wavetable is nonnegative.
| v | The wavetable to be compared with this |
false or true according as this is no less than v lexicographically Definition at line 585 of file fft_complex_float.hpp.
References ccgsl_pointer.
|
inline |
Swap two wavetable.
This works even if the wavetable have different sizes because it swaps pointers.
| v | The wavetable to swap with this. |
Definition at line 597 of file fft_complex_float.hpp.
References ccgsl_pointer, and count.
|
inline |
Find if this is the only object sharing the gsl_fft_complex_wavetable_float.
true or falses according as this is the only workspace object sharing the gsl_fft_complex_wavetable_float Definition at line 622 of file fft_complex_float.hpp.
References count.
|
inline |
Find how many workspace objects share this pointer.
Definition at line 627 of file fft_complex_float.hpp.
References count.
|
private |
The shared pointer.
Definition at line 605 of file fft_complex_float.hpp.
Referenced by clone(), empty(), get(), operator bool(), operator<(), operator<=(), operator=(), operator==(), operator>(), operator>=(), swap(), wavetable(), and ~wavetable().
|
private |
The shared reference count.
Definition at line 609 of file fft_complex_float.hpp.
Referenced by operator=(), swap(), unique(), use_count(), wavetable(), and ~wavetable().