using Plots
f(x)=sin(x)
g(x)=f(-x)
plt = plot(;)
a= π/2
plot!(plt, f, 0, a)
plot!(plt, g, -a, 0)
1 Like
using Plots
f(x)=sin(x)
g(x)=f(-x)
plt = plot(;)
a= π/2
plot!(plt, f, 0, a)
plot!(plt, g, -a, 0)