So, Wolfram Alpha is capable of plotting two functions in one figure.
But I am trying to express a piecewise function that has a different form on two (touching) domains.
In C code:
x < pi ? cos(pi/2 + x/2) : cos(x) // for x 0..2pi
I tried things like:
plot cos(pi/2 + x/2) and cos(y) for x=0 to pi and y=pi to 6.28
...but whatever I try, I can't make it plot piecewise?
I also tried the mathematical notation for conditions using the | notation, to no avail.
