Maple plot piecewise function for a mark scheme

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 3K views
Messages
9,621
Reaction score
9
I need to plot the following piecewise function for a mark scheme I'm writing, but I can't seem to get maple to plot it. I can define the function, but when I ask maple to plot it, it just hangs. Any help would be much appreciated. The function;

[tex]f(\theta):=<br /> \left\{\begin{array}{lcr}<br /> -\theta-\pi & \text{for} & \pi<\theta< 0 \\<br /> \pi-\theta & \text{for} & 0<\theta<\pi<br /> \end{array}\right.<br /> \text{and}f(\theta+2\pi)=f(theta)[/tex]

And I use the following command to try and plot it :frown: ;
Code:
plot(f(theta),theta=-4*\pi..4*\pi, y=-4..4, discont=true);
Thanks in advance.
 
Physics news on Phys.org
Hi Jason, thanks for the reply. I'm looking at fiddling it and doing a multiple plot of the different functions. Is is possible to define different restricted domains for each function?
 
Hootenanny said:
Hi Jason, thanks for the reply. I'm looking at fiddling it and doing a multiple plot of the different functions. Is is possible to define different restricted domains for each function?

That's what I tried to do first.

I think you can actually. I forgot about this other method.

Ok, for one part, do...

p1:=plot(function,x=a..b):

So, you call the first plot with the boundaries p1. I use colon because we don't need the plot to come yet.

Then, do the next part of the plot...

p2:=plot(function,x=a..b):

So, they are your restricted domains respectfully.

Now, to see both together, you can do...

display({p1,p2});

I'm not sure how that will look, but you can try it out. If you don't understand what I'm saying, let me know.
 
Thanks Jason, I've just figured it out now using your with(plots) command, it's been a real pain in the arse! I'll post the code and the plot for those who are interested when I've finished.

Thanks again Jason, next time your in the UK, let me buy you a beer...
 
Hootenanny said:
Thanks again Jason, next time your in the UK, let me buy you a beer...

That'll never happen. :frown:

Anyways, cheers and good luck with everything.