Home | History | Annotate | Download | only in octave

Lines Matching refs:Imag

4   the complex Constructor method, and the Real and Imag complex
11 %define %swig_fromcplx_conv(Type, OctConstructor, Real, Imag)
17 return octave_value(OctConstructor(Real(c), Imag(c)));
23 %define %swig_cplxdbl_conv(Type, Constructor, Real, Imag)
33 *val=Constructor(c.real(),c.imag());
48 %swig_fromcplx_conv(Type, Complex, Real, Imag);
52 %define %swig_cplxflt_conv(Type, Constructor, Real, Imag)
62 double im = c.imag();
84 %swig_fromcplx_conv(Type, FloatComplex, Real, Imag);
87 #define %swig_cplxflt_convn(Type, Constructor, Real, Imag) \
88 %swig_cplxflt_conv(Type, Constructor, Real, Imag)
91 #define %swig_cplxdbl_convn(Type, Constructor, Real, Imag) \
92 %swig_cplxdbl_conv(Type, Constructor, Real, Imag)