Stephen J. Barr wrote:
Thank you for looking into this.
-stephen
I posted a fix to http://trac.sagemath.org/sage_trac/ticket/8004
It's just awaiting a review, and hopefully will be in the next version
of Sage in a few weeks.
Thanks,
Jason
--
To post to this group, send email to sage-sup
Thank you for looking into this.
-stephen
On Tue, Jan 19, 2010 at 6:04 PM, Jason Grout wrote:
> stevejb wrote:
>
>> Hello,
>>
>> I am trying to plot 2 distinct sets on the same region_plot. My code
>> is as follow
>>
>> var('x1 x2')
>> (region_plot( [
>> ( (x2 >= exp(-x1)) or (x2 <= -exp(-x1) )),
stevejb wrote:
Hello,
I am trying to plot 2 distinct sets on the same region_plot. My code
is as follow
var('x1 x2')
(region_plot( [
( (x2 >= exp(-x1)) or (x2 <= -exp(-x1) )),
],
(-4,4), (-4,4), incol='#7f', outcol='#7f7fff',
bordercol='black',plot_points=300)
).show(aspect_ratio=1)
Th