gslcpp
Modern-C++ Wrapper for GSL
|
Go to the documentation of this file.
16 inline auto w_get(w_vector<
double const> *v, size_t i) {
17 return gsl_vector_get(v, i);
26 inline auto w_get(w_vector<
float const> *v, size_t i) {
27 return gsl_vector_float_get(v, i);
36 inline auto w_get(w_vector<
long double const> *v, size_t i) {
37 return gsl_vector_long_double_get(v, i);
46 inline auto w_get(w_vector<
int const> *v, size_t i) {
47 return gsl_vector_int_get(v, i);
56 inline auto w_get(w_vector<
unsigned const> *v, size_t i) {
57 return gsl_vector_uint_get(v, i);
66 inline auto w_get(w_vector<
long const> *v, size_t i) {
67 return gsl_vector_long_get(v, i);
76 inline auto w_get(w_vector<
unsigned long const> *v, size_t i) {
77 return gsl_vector_ulong_get(v, i);
86 inline auto w_get(w_vector<
short const> *v, size_t i) {
87 return gsl_vector_short_get(v, i);
96 inline auto w_get(w_vector<
unsigned short const> *v, size_t i) {
97 return gsl_vector_ushort_get(v, i);
106 inline auto w_get(w_vector<
char const> *v, size_t i) {
107 return gsl_vector_char_get(v, i);
116 inline auto w_get(w_vector<
unsigned char const> *v, size_t i) {
117 return gsl_vector_uchar_get(v, i);
126 inline auto w_get(w_vector<complex<
double>
const> *v, size_t i) {
127 return gsl_vector_complex_get(v, i);
136 inline auto w_get(w_vector<complex<
float>
const> *v, size_t i) {
137 return gsl_vector_complex_float_get(v, i);
146 inline auto w_get(w_vector<complex<
long double>
const> *v, size_t i) {
147 return gsl_vector_complex_long_double_get(v, i);
auto w_get(w_vector< complex< float > const > *v, size_t i)
Return ith element of vector v with bounds-checking.
auto w_get(w_vector< double const > *v, size_t i)
Return ith element of vector v with bounds-checking.
auto w_get(w_vector< int const > *v, size_t i)
Return ith element of vector v with bounds-checking.
auto w_get(w_vector< char const > *v, size_t i)
Return ith element of vector v with bounds-checking.
auto w_get(w_vector< float const > *v, size_t i)
Return ith element of vector v with bounds-checking.
auto w_get(w_vector< long const > *v, size_t i)
Return ith element of vector v with bounds-checking.
auto w_get(w_vector< unsigned long const > *v, size_t i)
Return ith element of vector v with bounds-checking.
auto w_get(w_vector< unsigned const > *v, size_t i)
Return ith element of vector v with bounds-checking.
auto w_get(w_vector< complex< double > const > *v, size_t i)
Return ith element of vector v with bounds-checking.
auto w_get(w_vector< unsigned char const > *v, size_t i)
Return ith element of vector v with bounds-checking.
auto w_get(w_vector< unsigned short const > *v, size_t i)
Return ith element of vector v with bounds-checking.
auto w_get(w_vector< long double const > *v, size_t i)
Return ith element of vector v with bounds-checking.
auto w_get(w_vector< short const > *v, size_t i)
Return ith element of vector v with bounds-checking.
Namespace for C++-interface to GSL.
auto w_get(w_vector< complex< long double > const > *v, size_t i)
Return ith element of vector v with bounds-checking.