[sage-support] Re: plot color computet by function

2012-09-05 Thread danjo86
I tried matrixplot. It works. Thanks But it doesen't solve the origin problem. Am Mittwoch, 22. August 2012 18:15:15 UTC+2 schrieb danjo86: > > Hey, > > i need some help. I try to definde the mandelbrotset with colors defined > by following function: > > sage: def

[sage-support] Re: plot color computet by function

2012-09-03 Thread danjo86
First of all, thanks for help. You got exactly the point. I saw the example you post. But is there a possibility, that i calculate mandel within the plotfunction? -- You received this message because you are subscribed to the Google Groups "sage-support" group. To post to this group, send emai

Re: [sage-support] Re: plot color computet by function

2012-09-03 Thread danjo86
Am Freitag, 31. August 2012 12:08:32 UTC+2 schrieb David Joyner: > > On Fri, Aug 31, 2012 at 4:53 AM, danjo86 > > > wrote: > > Right! It's a remain of tryings... > > > > Does this section help? > http://www.sagemath.org/doc/reference/sage/plot/col

[sage-support] Re: plot color computet by function

2012-08-31 Thread danjo86
Right! It's a remain of tryings... -- You received this message because you are subscribed to the Google Groups "sage-support" group. 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. Visi

[sage-support] plot color computet by function

2012-08-22 Thread danjo86
Hey, i need some help. I try to definde the mandelbrotset with colors defined by following function: sage: def mandel(x,y): v=[];c=x+y*i;z=c;v.append(z) for m in range(30): if abs(z)<2: z=z^2+c;v.append(z);color=exp(-m) return color