Defines | |
#define | LOG10_2 0.30102999566398119802 |
#define | LOG10_3 0.47712125471966243540 |
#define | LOG10_5 0.69897000433601885749 |
#define | M_2PI 6.28318530717958623200 |
#define | LOG_MIN 1.0e-100 |
#define | LOG_MAX 1.0e100 |
Functions | |
QWT_EXPORT double | qwtCeil125 (double x) |
QWT_EXPORT double | qwtFloor125 (double x) |
QWT_EXPORT double | qwtGetMin (double *array, int size) |
QWT_EXPORT double | qwtGetMax (double *array, int size) |
QWT_EXPORT void | qwtTwistArray (double *array, int size) |
QWT_EXPORT int | qwtChkMono (double *array, int size) |
QWT_EXPORT void | qwtLinSpace (double *array, int size, double xmin, double xmax) |
QWT_EXPORT void | qwtLogSpace (double *array, int size, double xmin, double xmax) |
template<class T> const T & | qwtMax (const T &x, const T &y) |
template<class T> const T & | qwtMin (const T &x, const T &y) |
template<class T> T | qwtAbs (const T &x) |
template<class T> int | qwtSign (const T &x) |
template<class T> T | qwtSqr (const T &x) |
template<class T> void | qwtCopyArray (T *dest, T *src, int n) |
template<class T> void | qwtShiftArray (T *arr, int size, int di) |
template<class T> void | qwtSwap (T &x1, T &x2) |
int | qwtInt (double x) |
template<class T> void | qwtSort (const T &x1, const T &x2, T &xmin, T &xmax) |
template<class T> void | qwtSort (T &x1, T &x2) |
template<class T> T | qwtLim (const T &x, const T &x1, const T &x2) |
|
Return the absolute value.
|
|
Find the smallest value out of {1,2,5}*10^n with an integer number n which is greater than or equal to x.
|
|
Checks if an array is a strictly monotonic sequence.
|
|
Copy an array into another.
|
|
Find the largest value out of {1,2,5}*10^n with an integer number n which is smaller than or equal to x.
|
|
Find the largest value in an array.
|
|
Find the smallest value in an array.
|
|
Round a number to the nearest integer.
|
|
Limit a value to fit into a specified interval.
|
|
Create an array of equally spaced values.
|
|
Create an array of logarithmically equally spaced values.
|
|
Return the largest of two values.
|
|
Return the smallest of two values.
|
|
Shift an array by a specified number of positions.
|
|
Return the sign.
|
|
Sort two values in ascending order.
|
|
Sort two values in ascending order.
|
|
Return the square of a number.
|
|
Swap two values.
|
|
Invert the order of array elements.
|