gslcpp
Modern-C++ Wrapper for GSL
|
Go to the documentation of this file.
17 inline int w_fprintf(FILE *f, w_vector<
double const> *v,
char const *fmt) {
18 return gsl_vector_fprintf(f, v, fmt);
28 inline int w_fprintf(FILE *f, w_vector<
float const> *v,
char const *fmt) {
29 return gsl_vector_float_fprintf(f, v, fmt);
40 w_fprintf(FILE *f, w_vector<
long double const> *v,
char const *fmt) {
41 return gsl_vector_long_double_fprintf(f, v, fmt);
51 inline int w_fprintf(FILE *f, w_vector<
int const> *v,
char const *fmt) {
52 return gsl_vector_int_fprintf(f, v, fmt);
62 inline int w_fprintf(FILE *f, w_vector<
unsigned const> *v,
char const *fmt) {
63 return gsl_vector_uint_fprintf(f, v, fmt);
73 inline int w_fprintf(FILE *f, w_vector<
long const> *v,
char const *fmt) {
74 return gsl_vector_long_fprintf(f, v, fmt);
85 w_fprintf(FILE *f, w_vector<
unsigned long const> *v,
char const *fmt) {
86 return gsl_vector_ulong_fprintf(f, v, fmt);
96 inline int w_fprintf(FILE *f, w_vector<
short const> *v,
char const *fmt) {
97 return gsl_vector_short_fprintf(f, v, fmt);
108 w_fprintf(FILE *f, w_vector<
unsigned short const> *v,
char const *fmt) {
109 return gsl_vector_ushort_fprintf(f, v, fmt);
119 inline int w_fprintf(FILE *f, w_vector<
char const> *v,
char const *fmt) {
120 return gsl_vector_char_fprintf(f, v, fmt);
131 w_fprintf(FILE *f, w_vector<
unsigned char const> *v,
char const *fmt) {
132 return gsl_vector_uchar_fprintf(f, v, fmt);
143 w_fprintf(FILE *f, w_vector<complex<
double>
const> *v,
char const *fmt) {
144 return gsl_vector_complex_fprintf(f, v, fmt);
155 w_fprintf(FILE *f, w_vector<complex<
float>
const> *v,
char const *fmt) {
156 return gsl_vector_complex_float_fprintf(f, v, fmt);
167 w_fprintf(FILE *f, w_vector<complex<
long double>
const> *v,
char const *fmt) {
168 return gsl_vector_complex_long_double_fprintf(f, v, fmt);
int w_fprintf(FILE *f, w_vector< int const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
int w_fprintf(FILE *f, w_vector< unsigned char const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
int w_fprintf(FILE *f, w_vector< unsigned short const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
int w_fprintf(FILE *f, w_vector< unsigned long const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
int w_fprintf(FILE *f, w_vector< unsigned const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
int w_fprintf(FILE *f, w_vector< char const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
int w_fprintf(FILE *f, w_vector< float const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
int w_fprintf(FILE *f, w_vector< short const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
int w_fprintf(FILE *f, w_vector< double const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
int w_fprintf(FILE *f, w_vector< complex< float > const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
int w_fprintf(FILE *f, w_vector< complex< long double > const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
int w_fprintf(FILE *f, w_vector< long const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
int w_fprintf(FILE *f, w_vector< complex< double > const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.
Namespace for C++-interface to GSL.
int w_fprintf(FILE *f, w_vector< long double const > *v, char const *fmt)
Write elements of v line by line to stream f via specifier fmt.