gslcpp
Modern-C++ Wrapper for GSL
|
Go to the documentation of this file.
16 inline void w_set(w_vector<
double> *v, size_t i,
double const &x) {
17 return gsl_vector_set(v, i, x);
26 inline void w_set(w_vector<
float> *v, size_t i,
float const &x) {
27 return gsl_vector_float_set(v, i, x);
36 inline void w_set(w_vector<
long double> *v, size_t i,
long double const &x) {
37 return gsl_vector_long_double_set(v, i, x);
46 inline void w_set(w_vector<
int> *v, size_t i,
int const &x) {
47 return gsl_vector_int_set(v, i, x);
56 inline void w_set(w_vector<
unsigned> *v, size_t i,
unsigned const &x) {
57 return gsl_vector_uint_set(v, i, x);
66 inline void w_set(w_vector<
long> *v, size_t i,
long const &x) {
67 return gsl_vector_long_set(v, i, x);
77 w_set(w_vector<
unsigned long> *v, size_t i,
unsigned long const &x) {
78 return gsl_vector_ulong_set(v, i, x);
87 inline void w_set(w_vector<
short> *v, size_t i,
short const &x) {
88 return gsl_vector_short_set(v, i, x);
98 w_set(w_vector<
unsigned short> *v, size_t i,
unsigned short const &x) {
99 return gsl_vector_ushort_set(v, i, x);
108 inline void w_set(w_vector<
char> *v, size_t i,
char const &x) {
109 return gsl_vector_char_set(v, i, x);
119 w_set(w_vector<
unsigned char> *v, size_t i,
unsigned char const &x) {
120 return gsl_vector_uchar_set(v, i, x);
130 w_set(w_vector<complex<
double>> *v, size_t i, complex<
double>
const &x) {
131 return gsl_vector_complex_set(v, i, x);
141 w_set(w_vector<complex<
float>> *v, size_t i, complex<
float>
const &x) {
142 return gsl_vector_complex_float_set(v, i, x);
152 w_set(w_vector<complex<
long double>> *v,
154 complex<
long double>
const &x) {
155 return gsl_vector_complex_long_double_set(v, i, x);
void w_set(w_vector< unsigned char > *v, size_t i, unsigned char const &x)
Set to x the value of ith element of vector v.
void w_set(w_vector< int > *v, size_t i, int const &x)
Set to x the value of ith element of vector v.
void w_set(w_vector< complex< double >> *v, size_t i, complex< double > const &x)
Set to x the value of ith element of vector v.
void w_set(w_vector< unsigned > *v, size_t i, unsigned const &x)
Set to x the value of ith element of vector v.
void w_set(w_vector< long double > *v, size_t i, long double const &x)
Set to x the value of ith element of vector v.
void w_set(w_vector< unsigned short > *v, size_t i, unsigned short const &x)
Set to x the value of ith element of vector v.
void w_set(w_vector< short > *v, size_t i, short const &x)
Set to x the value of ith element of vector v.
void w_set(w_vector< char > *v, size_t i, char const &x)
Set to x the value of ith element of vector v.
void w_set(w_vector< float > *v, size_t i, float const &x)
Set to x the value of ith element of vector v.
void w_set(w_vector< double > *v, size_t i, double const &x)
Set to x the value of ith element of vector v.
void w_set(w_vector< unsigned long > *v, size_t i, unsigned long const &x)
Set to x the value of ith element of vector v.
void w_set(w_vector< long > *v, size_t i, long const &x)
Set to x the value of ith element of vector v.
Namespace for C++-interface to GSL.
void w_set(w_vector< complex< float >> *v, size_t i, complex< float > const &x)
Set to x the value of ith element of vector v.
void w_set(w_vector< complex< long double >> *v, size_t i, complex< long double > const &x)
Set to x the value of ith element of vector v.