gslcpp
Modern-C++ Wrapper for GSL
|
Go to the documentation of this file.
15 inline auto w_imag(w_vector<complex<
double>> *u) {
16 return gsl_vector_complex_imag(u);
24 inline auto w_imag(w_vector<complex<
float>> *u) {
25 return gsl_vector_complex_float_imag(u);
33 inline auto w_imag(w_vector<complex<
long double>> *u) {
34 return gsl_vector_complex_long_double_imag(u);
42 inline auto w_imag(w_vector<complex<
double>>
const *u) {
43 return gsl_vector_complex_const_imag(u);
51 inline auto w_imag(w_vector<complex<
float>>
const *u) {
52 return gsl_vector_complex_float_const_imag(u);
60 inline auto w_imag(w_vector<complex<
long double>>
const *u) {
61 return gsl_vector_complex_long_double_const_imag(u);
auto w_imag(w_vector< complex< long double >> const *u)
Imaginary-part of complex vector.
auto w_imag(w_vector< complex< double >> const *u)
Imaginary-part of complex vector.
auto w_imag(w_vector< complex< float >> const *u)
Imaginary-part of complex vector.
auto w_imag(w_vector< complex< float >> *u)
Imaginary-part of complex vector.
auto w_imag(w_vector< complex< long double >> *u)
Imaginary-part of complex vector.
auto w_imag(w_vector< complex< double >> *u)
Imaginary-part of complex vector.
Namespace for C++-interface to GSL.