三角形的顶点在tri = [1 2 2 1; 1 2 -2 1]
我看到tri有4列2行,但它们如何定义顶点?
在tri中定义了什么顶点以及如何在Matlab中绘制它们?
答案 0 :(得分:2)
在tri
变量中,最后一个顶点与第一个顶点相同。如果您希望在使用plot
时关闭三角形,这是有道理的。比较以下内容:
tri = [1 2 2; 1 2 -2]; %// just the three vertices
plot(tri(1,:), tri(2,:), 'linewidth', 1)
axis([0 3 -3 3])
tri = [1 2 2 1; 1 2 -2 1]; %// first vertex is repeated to "close" the plot
plot(tri(1,:), tri(2,:), 'linewidth', 1)
axis([0 3 -3 3])
答案 1 :(得分:0)