Re: Python Packages for Complex Numbers and Matrix Math
by Maan Hamze other posts by this author
Aug 27 2001 1:39AM messages near this date
Re: PyGTK - 1.5.2 not 2.1x
|
Re: Python Packages for Complex Numbers and Matrix Math
"Ignacio Vazquez-Abrams" <ignacio@[...].net> wrote in message
news:mailman.998866419.18595.python-list@[...]..
> On Sun, 26 Aug 2001, Maan Hamze wrote:
>
> > 2. Also,
> > >>> x = 4 + 7j
> > >>> x.imag = 6
> > error: object has a read-only attrib
> > >>> x.real = 7
> > same error of read-olny attrib
> >
> > why?
>
> Because. I could look into the source (or point you to the source), but
the
> answer would still simply be "Because".
>
So to pass a value to either the imag or real part:
> >> a=1
> >> b=2
> >> c=complex(a,b)
> >> b = 3
> >> c=complex(a,b)
and so on........
or something like:
> >> def PassValue(a,b):
... r=complex(a,b)
... return r
Maan
--
http://mail.python.org/mailman/listinfo/python-list
Thread:
Maan Hamze
Ignacio Vazquez-Abrams
|