0

我正在尝试制作一个最小距离分类器,我需要绘制一条线的垂直平分线来绘制决策边界。我有一个点,甚至平分线的斜率。如何在图表上绘制它?

4

1 回答 1

0

以下函数将在给定中心点和斜率的情况下绘制一条线:

function drawLine(point,slope)
% point - vector [x,y]
% slope - slope of the line

x = point(1);
y = point(2);

lengthLine = 5;

xLine = x-lengthLine:x+lengthLine;
yLine = slope*(xLine-x) + y;

plot(x,y,'ro')
plot(xLine,yLine,'b')
于 2013-03-13T23:08:57.453 回答