On Mon, Feb 23, 2009 at 1:25 PM, Stefanie Schmidt <prur...@web.de> wrote:
>
> thank you for you quick answers! it works. but my example in my
> previous mail was only a simplification of my real problem. your
> answer works fine with my simplification. but I am not shure what to
> do with my original problem. I want to plot a function of two
> variables, but with one variable fixed. I have
>
> def g(f,s):
>    ....
>    (quiet long here with a lot of cases...)
>
> and I want to plot for example
>
> plot(g(x,90),48,51)

def h(x):
  return g(x,90)

plot(h,48,51)

-- 
Johan

--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to