On Sun, 2006-12-10 at 11:31 +0100, Claudius Euteneuer wrote:
> now I want to plot the funtions in 2 different Intervals (in the
> same window):
> sin(x) with [x,-10,10] _and_
> cos(x) with [x,-3,2]
>
> Does anoyone know how to do that?
Another solution, using Claudius' own idea:
(%i1) Cos(x) := if x < -3 or x > 2 then %i else cos(x)$
(%i2) plot2d([sin(x), Cos], [x, -10, 10])$
Jaime