Can someone tell me please how do I plot 2D graphic of 2\pi periodic function y = x^2-\pi^2 with range of x = -\pi to x = \pi ? Thank you
Can someone tell me please how do I plot 2D graphic of 2\pi periodic function y = x^2-\pi^2 with range of x = -\pi to x = \pi ? Thank you
x = linspace(-%pi,%pi,64);
y = x.^2-%pi.^2;
plot(x,y);
And this Plot 2D Graphic Beginner Question