1.a line drawn on a map connecting points of equal height
2.any spatial attributes (especially as defined by outline);
he could barely make out their shapes through the smoke
3.a feature (or the order or arrangement of features) of anything having a complex structure;
the contours of the melody
1.form the contours of
函数简介 函数功能:在MATLAB中,该函数用于绘制矩阵的等高线。 语法格式: contour(Z) 绘制矩阵Z的等高线。在这里Z表示距X-Y平面的高度。Z必须至少是一个2行2列的矩阵,且矩阵中至少包含两个不等的数值。MATLAB会根据Z中最小值和最大值自动确定等高线的条数和等高线的值。绘图区间的x、y轴范围分别为:[1:m]、[1:n]。其中[m, n] = size(Z),m表示Z的行数,n表示Z的列数。 contour(Z,n) 这里n指定了等高线的条数。 contour(Z,v)