MATLAB: Can I call this plot as Contour plot

contourplot

Hello all,
Refer to the code below
clear all;
x=sin(2*pi*1000*((0:0.1:200)/10000));
y=cos(2*pi*1000*((0:0.1:200)/10000));
figure
plot(x,y)
xlabel ('Values of Sine');
ylabel('Values of Cos');
Can I call the plot I obtain as "Contour plot of x & y" ? What plot it is exactly?

Best Answer

What you're doing is called a parametric plot - x(t) against y(t) for a parameter variable t.