You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.8 KiB
54 lines
1.8 KiB
// General vectors of complex numbers.
|
|
|
|
#ifndef _CL_GV_COMPLEX_H
|
|
#define _CL_GV_COMPLEX_H
|
|
|
|
#include "cl_number.h"
|
|
#include "cl_GV_number.h"
|
|
#include "cl_complex_class.h"
|
|
#include "cl_io.h"
|
|
|
|
// A vector of complex numbers is just a normal vector of numbers.
|
|
|
|
typedef cl_heap_GV<cl_N> cl_heap_GV_N;
|
|
|
|
struct cl_GV_N : public cl_GV<cl_N,cl_GV_number> {
|
|
public:
|
|
// Constructors.
|
|
cl_GV_N ();
|
|
cl_GV_N (const cl_GV_N&);
|
|
explicit cl_GV_N (uintL len);
|
|
// Assignment operators.
|
|
cl_GV_N& operator= (const cl_GV_N&);
|
|
// Private pointer manipulations.
|
|
cl_GV_N (cl_heap_GV_N* p) : cl_GV<cl_N,cl_GV_number> (p) {}
|
|
cl_GV_N (cl_private_thing p) : cl_GV<cl_N,cl_GV_number> (p) {}
|
|
};
|
|
inline cl_GV_N::cl_GV_N (const cl_GV_N& x) : cl_GV<cl_N,cl_GV_number> (as_cl_private_thing(x)) {}
|
|
CL_DEFINE_ASSIGNMENT_OPERATOR(cl_GV_N,cl_GV_N)
|
|
inline cl_GV_N::cl_GV_N (uintL len)
|
|
: cl_GV<cl_N,cl_GV_number> ((cl_heap_GV_N*) cl_make_heap_GV_number(len)) {}
|
|
inline cl_GV_N::cl_GV_N ()
|
|
: cl_GV<cl_N,cl_GV_number> ((cl_heap_GV_N*) (cl_heap_GV_number*) cl_null_GV_number) {}
|
|
|
|
// Copy a vector.
|
|
inline const cl_GV_N copy (const cl_GV_N& vector)
|
|
{
|
|
return The(cl_GV_N) (copy((const cl_GV_number&) vector));
|
|
}
|
|
|
|
// Output.
|
|
inline void fprint (cl_ostream stream, const cl_GV_N& x)
|
|
{
|
|
extern cl_print_flags cl_default_print_flags;
|
|
extern void print_vector (cl_ostream stream, const cl_print_flags& flags, void (* fun) (cl_ostream, const cl_print_flags&, const cl_number&), const cl_GV_number& vector);
|
|
extern void print_complex (cl_ostream stream, const cl_print_flags& flags, const cl_N& z);
|
|
print_vector(stream, cl_default_print_flags,
|
|
(void (*) (cl_ostream, const cl_print_flags&, const cl_number&))
|
|
(void (*) (cl_ostream, const cl_print_flags&, const cl_N&))
|
|
&print_complex,
|
|
x);
|
|
}
|
|
CL_DEFINE_PRINT_OPERATOR(cl_GV_N)
|
|
|
|
#endif /* _CL_GV_COMPLEX_H */
|