标签: matlab octave matlab-figure contour
x = linspace(-10, 10, 100); y = linspace(-10, 10, 100); [X,Y] = meshgrid(x, y); t2= X.^2 + (Y.^2); contour(x,y,t2,'showtext','on');
当我以八度音程运行上面的代码时,我在等高线图中得到同心椭圆图。我期望成为一个同心圆的人物。这有什么问题?
答案 0 :(得分:4)
是同心圆图。添加
axis equal
更清楚地看到它。