Adding documentation and a test to Vector
[Math-GSL.git] / Complex.i
blob6c39f14969f0de8618d0accf5b37c5eb1b635bb8
1 %module Complex
2 %{
3 #include "/usr/local/include/gsl/gsl_complex.h"
4 #include "/usr/local/include/gsl/gsl_complex_math.h"
5 %}
7 %include "/usr/local/include/gsl/gsl_complex.h"
8 %include "/usr/local/include/gsl/gsl_complex_math.h"
11 %include "carrays.i"
12 %array_functions(double, doubleArray);
14 %perlcode %{
16 @EXPORT_OK = qw(
17 gsl_complex_arg gsl_complex_abs gsl_complex_rect gsl_complex_polar doubleArray_getitem
18 gsl_complex_rect gsl_complex_polar gsl_complex_arg gsl_complex_abs gsl_complex_abs2
19 gsl_complex_logabs gsl_complex_add gsl_complex_sub gsl_complex_mul gsl_complex_div
20 gsl_complex_add_real gsl_complex_sub_real gsl_complex_mul_real gsl_complex_div_real
21 gsl_complex_add_imag gsl_complex_sub_imag gsl_complex_mul_imag gsl_complex_div_imag
22 gsl_complex_conjugate gsl_complex_inverse gsl_complex_negative gsl_complex_sqrt
23 gsl_complex_sqrt_real gsl_complex_pow gsl_complex_pow_real gsl_complex_exp
24 gsl_complex_log gsl_complex_log10 gsl_complex_log_b gsl_complex_sin
25 gsl_complex_cos gsl_complex_sec gsl_complex_csc gsl_complex_tan
26 gsl_complex_cot gsl_complex_arcsin gsl_complex_arcsin_real gsl_complex_arccos
27 gsl_complex_arccos_real gsl_complex_arcsec gsl_complex_arcsec_real gsl_complex_arccsc
28 gsl_complex_arccsc_real gsl_complex_arctan gsl_complex_arccot gsl_complex_sinh
29 gsl_complex_cosh gsl_complex_sech gsl_complex_csch gsl_complex_tanh
30 gsl_complex_coth gsl_complex_arcsinh gsl_complex_arccosh gsl_complex_arccosh_real
31 gsl_complex_arcsech gsl_complex_arccsch gsl_complex_arctanh gsl_complex_arctanh_real
32 gsl_complex_arccoth new_doubleArray delete_doubleArray doubleArray_setitem
33 gsl_real gsl_imag gsl_parts
34 gsl_complex_eq gsl_set_real gsl_set_imag gsl_set_complex
35 $GSL_COMPLEX_ONE $GSL_COMPLEX_ZERO $GSL_COMPLEX_NEGONE
37 # macros to implement
38 # gsl_set_complex gsl_set_complex_packed
39 our ($GSL_COMPLEX_ONE, $GSL_COMPLEX_ZERO, $GSL_COMPLEX_NEGONE) = map { gsl_complex_rect($_, 0) } qw(1 0 -1);
42 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );
44 ### wrapper interface ###
45 sub new {
46 my ($class, @values) = @_;
47 my $this = {};
48 $this->{_complex} = gsl_complex_rect($values[0], $values[1]);
49 bless $this, $class;
51 sub real {
52 my ($self) = @_;
53 gsl_real($self->{_complex}->{dat});
56 sub imag {
57 my ($self) = @_;
58 gsl_imag($self->{_complex}->{dat});
61 sub parts {
62 my ($self) = @_;
63 gsl_parts($self->{_complex}->{dat});
66 ### end wrapper interface ###
68 ### some important macros that are in gsl_complex.h
69 sub gsl_complex_eq {
70 my ($z,$w) = @_;
71 gsl_real($z) == gsl_real($w) && gsl_imag($z) == gsl_imag($w) ? 1 : 0;
74 sub gsl_set_real {
75 my ($z,$r) = @_;
76 doubleArray_setitem($z->{dat}, 0, $r);
79 sub gsl_set_imag {
80 my ($z,$i) = @_;
81 doubleArray_setitem($z->{dat}, 1, $i);
84 sub gsl_real {
85 my $z = shift;
86 return doubleArray_getitem($z->{dat}, 0 );
89 sub gsl_imag {
90 my $z = shift;
91 return doubleArray_getitem($z->{dat}, 1 );
94 sub gsl_parts {
95 my $z = shift;
96 return (gsl_real($z), gsl_imag($z));
99 sub gsl_set_complex {
100 my ($z, $r, $i) = @_;
101 gsl_set_real($z, $r);
102 gsl_set_imag($z, $i);
105 __END__
107 =head1 NAME
109 Math::GSL::Complex
110 Functions concerning complex numbers.
112 =head1 SYPNOPSIS
114 use Math::GSL::Complex qw/:all/;
116 =head1 DESCRIPTION
118 Here is a list of all the functions included in this module :
120 gsl_complex_arg
122 gsl_complex_abs
124 gsl_complex_rect($x,$y) - create a complex number in cartesian form $x + $y*I
126 gsl_complex_polar($r,$theta) - create a complex number in polar form $r*exp(I*$theta)
128 gsl_complex_abs2
130 gsl_complex_logabs
132 gsl_complex_add
134 gsl_complex_sub
136 gsl_complex_mul
138 gsl_complex_div
140 gsl_complex_add_real
142 gsl_complex_sub_real
144 gsl_complex_mul_real
146 gsl_complex_div_real
148 gsl_complex_add_imag
150 gsl_complex_sub_imag
152 gsl_complex_mul_imag
154 gsl_complex_div_imag
156 gsl_complex_conjugate
158 gsl_complex_inverse
160 gsl_complex_negative
162 gsl_complex_sqrt
164 gsl_complex_sqrt_real
166 gsl_complex_pow
168 gsl_complex_pow_real
170 gsl_complex_exp
172 gsl_complex_log
174 gsl_complex_log10
176 gsl_complex_log_b
178 gsl_complex_sin
180 gsl_complex_cos
182 gsl_complex_sec
184 gsl_complex_csc
186 gsl_complex_tan
188 gsl_complex_cot
190 gsl_complex_arcsin
192 gsl_complex_arcsin_real
194 gsl_complex_arccos
196 gsl_complex_arccos_real
198 gsl_complex_arcsec
200 gsl_complex_arcsec_real
202 gsl_complex_arccsc
204 gsl_complex_arccsc_real
206 gsl_complex_arctan
208 gsl_complex_arccot
210 gsl_complex_sinh
212 gsl_complex_cosh
214 gsl_complex_sech
216 gsl_complex_csch
218 gsl_complex_tanh
220 gsl_complex_coth
222 gsl_complex_arcsinh
224 gsl_complex_arccosh
226 gsl_complex_arccosh_real
228 gsl_complex_arcsech
230 gsl_complex_arccsch
232 gsl_complex_arctanh
234 gsl_complex_arctanh_real
236 gsl_complex_arccoth
238 gsl_real($z) - return the real part of $z
240 gsl_imag($z) - return the imaginary part of $z
242 gsl_parts($z) - return a list of the real and imaginary parts of $z
244 gsl_complex_eq
246 gsl_set_real($z, $x) - sets the real part of $z to $x
248 gsl_set_imag($z, $y) - sets the imaginary part of $z to $y
250 gsl_set_complex
252 You have to add the functions you want to use inside the qw /put_funtion_here / with spaces between each function. You can also write use Math::GSL::Complex qw/:all/ to use all avaible functions of the module.
254 For more informations on the functions, we refer you to the GSL offcial documentation: http://www.gnu.org/software/gsl/manual/html_node/
255 Tip : search on google: site:http://www.gnu.org/software/gsl/manual/html_node/ name_of_the_function_you_want
257 =head1 EXAMPLES
259 This code defines $z as 6 + 4*I, takes the complex conjugate of that number, then prints it out.
261 my $z = gsl_complex_rect(6,4);
262 my $y = gsl_complex_conjugate($z);
263 my ($real, $imag) = gsl_parts($y);
265 print "z = $real + $imag*I\n";
267 This code defines $z as 5 + 3*I, multiplies it by 2 and then prints it out.
269 my $x = gsl_complex_rect(5,3);
270 my $z = gsl_complex_mul_real($x, 2);
271 my $real = gsl_real($z);
272 my $imag = gsl_real($z);
273 print "Re(\$z) = $real\n";
276 =head1 AUTHOR
278 Jonathan Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>
280 =head1 COPYRIGHT AND LICENSE
282 Copyright (C) 2008 Jonathan Leto and Thierry Moisan
284 This program is free software; you can redistribute it and/or modify it
285 under the same terms as Perl itself.
287 =cut