Can I call this plot as Contour plot?
Ältere Kommentare anzeigen
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?
Akzeptierte Antwort
Weitere Antworten (1)
Sean de Wolski
am 19 Mär. 2011
Sure:
%your stuff followed by:
title('Contour plot of x & y');
1 Kommentar
Matt Tearle
am 19 Mär. 2011
::rimshot:: Thank you, you've been great. Don't forget to tip your waiter.
Kategorien
Mehr zu Contour Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!