gslcpp
Modern-C++ Wrapper for GSL
|
Go to the documentation of this file.
15 inline void w_set_all(w_vector<
double> *v,
double const &x) {
16 return gsl_vector_set_all(v, x);
24 inline void w_set_all(w_vector<
float> *v,
float const &x) {
25 return gsl_vector_float_set_all(v, x);
33 inline void w_set_all(w_vector<
long double> *v,
long double const &x) {
34 return gsl_vector_long_double_set_all(v, x);
42 inline void w_set_all(w_vector<
int> *v,
int const &x) {
43 return gsl_vector_int_set_all(v, x);
51 inline void w_set_all(w_vector<
unsigned> *v,
unsigned const &x) {
52 return gsl_vector_uint_set_all(v, x);
60 inline void w_set_all(w_vector<
long> *v,
long const &x) {
61 return gsl_vector_long_set_all(v, x);
69 inline void w_set_all(w_vector<
unsigned long> *v,
unsigned long const &x) {
70 return gsl_vector_ulong_set_all(v, x);
78 inline void w_set_all(w_vector<
short> *v,
short const &x) {
79 return gsl_vector_short_set_all(v, x);
87 inline void w_set_all(w_vector<
unsigned short> *v,
unsigned short const &x) {
88 return gsl_vector_ushort_set_all(v, x);
96 inline void w_set_all(w_vector<
char> *v,
char const &x) {
97 return gsl_vector_char_set_all(v, x);
105 inline void w_set_all(w_vector<
unsigned char> *v,
unsigned char const &x) {
106 return gsl_vector_uchar_set_all(v, x);
114 inline void w_set_all(w_vector<complex<
double>> *v, complex<
double>
const &x) {
115 return gsl_vector_complex_set_all(v, x);
123 inline void w_set_all(w_vector<complex<
float>> *v, complex<
float>
const &x) {
124 return gsl_vector_complex_float_set_all(v, x);
133 w_set_all(w_vector<complex<
long double>> *v, complex<
long double>
const &x) {
134 return gsl_vector_complex_long_double_set_all(v, x);
void w_set_all(w_vector< complex< long double >> *v, complex< long double > const &x)
Set every element of vector v to same value x.
void w_set_all(w_vector< long double > *v, long double const &x)
Set every element of vector v to same value x.
void w_set_all(w_vector< unsigned > *v, unsigned const &x)
Set every element of vector v to same value x.
void w_set_all(w_vector< int > *v, int const &x)
Set every element of vector v to same value x.
void w_set_all(w_vector< double > *v, double const &x)
Set every element of vector v to same value x.
void w_set_all(w_vector< short > *v, short const &x)
Set every element of vector v to same value x.
void w_set_all(w_vector< unsigned long > *v, unsigned long const &x)
Set every element of vector v to same value x.
void w_set_all(w_vector< complex< double >> *v, complex< double > const &x)
Set every element of vector v to same value x.
void w_set_all(w_vector< unsigned short > *v, unsigned short const &x)
Set every element of vector v to same value x.
void w_set_all(w_vector< complex< float >> *v, complex< float > const &x)
Set every element of vector v to same value x.
void w_set_all(w_vector< unsigned char > *v, unsigned char const &x)
Set every element of vector v to same value x.
void w_set_all(w_vector< char > *v, char const &x)
Set every element of vector v to same value x.
void w_set_all(w_vector< long > *v, long const &x)
Set every element of vector v to same value x.
Namespace for C++-interface to GSL.
void w_set_all(w_vector< float > *v, float const &x)
Set every element of vector v to same value x.