gslcpp
Modern-C++ Wrapper for GSL
|
Go to the documentation of this file.
16 inline int w_div(w_vector<
double> *u, w_vector<
double const> *v) {
17 return gsl_vector_div(u, v);
26 inline int w_div(w_vector<
float> *u, w_vector<
float const> *v) {
27 return gsl_vector_float_div(u, v);
36 inline int w_div(w_vector<
long double> *u, w_vector<
long double const> *v) {
37 return gsl_vector_long_double_div(u, v);
46 inline int w_div(w_vector<
int> *u, w_vector<
int const> *v) {
47 return gsl_vector_int_div(u, v);
56 inline int w_div(w_vector<
unsigned> *u, w_vector<
unsigned const> *v) {
57 return gsl_vector_uint_div(u, v);
66 inline int w_div(w_vector<
long> *u, w_vector<
long const> *v) {
67 return gsl_vector_long_div(u, v);
77 w_div(w_vector<
unsigned long> *u, w_vector<
unsigned long const> *v) {
78 return gsl_vector_ulong_div(u, v);
87 inline int w_div(w_vector<
short> *u, w_vector<
short const> *v) {
88 return gsl_vector_short_div(u, v);
98 w_div(w_vector<
unsigned short> *u, w_vector<
unsigned short const> *v) {
99 return gsl_vector_ushort_div(u, v);
108 inline int w_div(w_vector<
char> *u, w_vector<
char const> *v) {
109 return gsl_vector_char_div(u, v);
119 w_div(w_vector<
unsigned char> *u, w_vector<
unsigned char const> *v) {
120 return gsl_vector_uchar_div(u, v);
130 w_div(w_vector<complex<
double>> *u, w_vector<complex<
double>
const> *v) {
131 return gsl_vector_complex_div(u, v);
141 w_div(w_vector<complex<
float>> *u, w_vector<complex<
float>
const> *v) {
142 return gsl_vector_complex_float_div(u, v);
152 w_div(w_vector<complex<
long double>> *u,
153 w_vector<complex<
long double>
const> *v) {
154 return gsl_vector_complex_long_double_div(u, v);
int w_div(w_vector< char > *u, w_vector< char const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< unsigned short > *u, w_vector< unsigned short const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< unsigned long > *u, w_vector< unsigned long const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< double > *u, w_vector< double const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< unsigned char > *u, w_vector< unsigned char const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< float > *u, w_vector< float const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< complex< double >> *u, w_vector< complex< double > const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< unsigned > *u, w_vector< unsigned const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< int > *u, w_vector< int const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< complex< float >> *u, w_vector< complex< float > const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< short > *u, w_vector< short const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< long double > *u, w_vector< long double const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< long > *u, w_vector< long const > *v)
Perform the logical operation u = u/v element by element.
int w_div(w_vector< complex< long double >> *u, w_vector< complex< long double > const > *v)
Perform the logical operation u = u/v element by element.
Namespace for C++-interface to GSL.