gslcpp
Modern-C++ Wrapper for GSL
|
Go to the documentation of this file.
15 inline bool w_isneg(w_vector<
double const> *v) {
return gsl_vector_isneg(v); }
22 inline bool w_isneg(w_vector<
float const> *v) {
23 return gsl_vector_float_isneg(v);
31 inline bool w_isneg(w_vector<
long double const> *v) {
32 return gsl_vector_long_double_isneg(v);
40 inline bool w_isneg(w_vector<
int const> *v) {
return gsl_vector_int_isneg(v); }
47 inline bool w_isneg(w_vector<
unsigned const> *v) {
48 return gsl_vector_uint_isneg(v);
56 inline bool w_isneg(w_vector<
long const> *v) {
57 return gsl_vector_long_isneg(v);
65 inline bool w_isneg(w_vector<
unsigned long const> *v) {
66 return gsl_vector_ulong_isneg(v);
74 inline bool w_isneg(w_vector<
short const> *v) {
75 return gsl_vector_short_isneg(v);
83 inline bool w_isneg(w_vector<
unsigned short const> *v) {
84 return gsl_vector_ushort_isneg(v);
92 inline bool w_isneg(w_vector<
char const> *v) {
93 return gsl_vector_char_isneg(v);
101 inline bool w_isneg(w_vector<
unsigned char const> *v) {
102 return gsl_vector_uchar_isneg(v);
110 inline bool w_isneg(w_vector<complex<
double>
const> *v) {
111 return gsl_vector_complex_isneg(v);
119 inline bool w_isneg(w_vector<complex<
float>
const> *v) {
120 return gsl_vector_complex_float_isneg(v);
128 inline bool w_isneg(w_vector<complex<
long double>
const> *v) {
129 return gsl_vector_complex_long_double_isneg(v);
bool w_isneg(w_vector< unsigned char const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< long double const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< unsigned short const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< float const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< char const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< int const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< unsigned long const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< complex< long double > const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< complex< float > const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< short const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< double const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< complex< double > const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< unsigned const > *v)
True only if every element of vector v be negative.
bool w_isneg(w_vector< long const > *v)
True only if every element of vector v be negative.
Namespace for C++-interface to GSL.