1 (edited by joe 2010-11-10 18:07:02)

Topic: Argument range

Can I define a graph for all x(t) and y(t) in the range -100 to 100, and then not include ]-3;3[, so that it will actually be defined in to parts as:

[-100;-3] and [3;100]

Re: Argument range

The easiest way is to split it into two functions. Another way is to use the if function to limit the range, for example x(t)=t, y(t)=if(100>abs(t)>3, sin(t), undef)

Re: Argument range

I did start with two split functions, but I had two combine. The "if" did the trick thanks(: