On Sep 9, 1:29 am, Jason Merrill <[EMAIL PROTECTED]> wrote:
> On Sep 8, 4:12 pm, Sand Wraith <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi all!
>
> > I do not know - it is an bug, or my mistake. I am trying to plot sum
> > of a few same functions:
>
> > This is my function:
> > B=10*sqrt( pi)/7;
> > b
On Sep 8, 4:12 pm, Sand Wraith <[EMAIL PROTECTED]> wrote:
> Hi all!
>
> I do not know - it is an bug, or my mistake. I am trying to plot sum
> of a few same functions:
>
> This is my function:
> B=10*sqrt( pi)/7;
> b=pi/7;
> c(f)=B*exp(-(b*f)^2);
> plot(c(f),(f,-5,5));
>
> in the output i see co
On Sun, Apr 6, 2008 at 1:35 AM, Eugene <[EMAIL PROTECTED]> wrote:
>
> Hi all!
>
> Help please, I can not understand what is wrong with this:
>
> f(x)=x;
> def g(x):
> if (x>=0):
> return f(x)
> else:
> return f(-x);
>
> show(plot(g(x),(x,-1,1))) #form1
> show(plot(g,-