Can I call this plot as Contour plot?
이전 댓글 표시
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?
채택된 답변
추가 답변 (1개)
Sean de Wolski
2011년 3월 19일
Sure:
%your stuff followed by:
title('Contour plot of x & y');
댓글 수: 1
Matt Tearle
2011년 3월 19일
::rimshot:: Thank you, you've been great. Don't forget to tip your waiter.
카테고리
도움말 센터 및 File Exchange에서 Contour Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!