One more no-eval

2008-04-16 Thread Friedrich Hagedorn
Hello, I dont want this behavior In [6]: sqrt(L/C) Out[6]: ⎽⎽⎽ ╲╱ L ─ ⎽⎽⎽ ╲╱ C By, Friedrich --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to sympy@go

Re: One more no-eval

2008-04-16 Thread Ondrej Certik
On Wed, Apr 16, 2008 at 3:29 PM, Friedrich Hagedorn <[EMAIL PROTECTED]> wrote: > > Hello, > > I dont want this behavior > > In [6]: sqrt(L/C) > Out[6]: > ⎽⎽⎽ > ╲╱ L > ─ > ⎽⎽⎽ > ╲╱ C > > By, That's the automatic evaluation: In [1]: L, C = symbols("LC") In [2]: sqrt(L/C) Out[2]:

Re: One more no-eval

2008-04-16 Thread Friedrich Hagedorn
On Wed, Apr 16, 2008 at 03:48:20PM +0200, Ondrej Certik wrote: > That's the automatic evaluation: > > In [1]: L, C = symbols("LC") > > In [2]: sqrt(L/C) > Out[2]: > ⎽⎽⎽ > ╲╱ L > ─ > ⎽⎽⎽ > ╲╱ C > > In [3]: print sqrt(L/C) > C**(-1/2)*L**(1/2) > > > Basically, it's the same problem as w

Re: One more no-eval

2008-04-18 Thread Ondrej Certik
On Wed, Apr 16, 2008 at 4:16 PM, Friedrich Hagedorn <[EMAIL PROTECTED]> wrote: > > On Wed, Apr 16, 2008 at 03:48:20PM +0200, Ondrej Certik wrote: > > That's the automatic evaluation: > > > > In [1]: L, C = symbols("LC") > > > > In [2]: sqrt(L/C) > > Out[2]: > > ⎽⎽⎽ > > ╲╱ L > > ─ >

Re: One more no-eval

2008-04-18 Thread Friedrich Hagedorn
On Fri, Apr 18, 2008 at 03:12:03PM +0200, Ondrej Certik wrote: > On Wed, Apr 16, 2008 at 4:16 PM, Friedrich Hagedorn <[EMAIL PROTECTED]> wrote: > > > > On Wed, Apr 16, 2008 at 03:48:20PM +0200, Ondrej Certik wrote: > > > That's the automatic evaluation: > > > > > > In [1]: L, C = symbols("LC")