Re: [sage-support] Re: Plot several functions in the same graphic - A stack like method

2013-11-03 Thread Christophe Bal
Indeed, I'm french with a more or less knowledge of english... ;-) I was just thinking of stacking one curve upon another. Your proposition is the one I was looking for. Thanks. Christophe 2013/11/3 Nils Bruin > > > On Sunday, November 3, 2013 2:22:05 AM UTC-8, projetmbc wrote: >> >> Hello,

[sage-support] Re: Plot several functions in the same graphic - A stack like method

2013-11-03 Thread Nils Bruin
On Sunday, November 3, 2013 2:22:05 AM UTC-8, projetmbc wrote: > > Hello, > here is a way to draw several functions on the same graphic. > > > myFamily = plot(0, x, 1, 7) > > for a in range(1, 10): > myFamily += plot(a*x^2+2, x, 1, 7) > > s