I have some known parameters W=[a b], X0=[c;d] and decision boundary W'*(x-X0) = 0. I know that if I draw a line on the points that fit on this equation, I have got a decision boundary but I could not solve it on code. How could I draw that decision line in Matlab?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I solve the problem by converting the equation to a format can be solved for a given x find y. Then I iterate over all possible x values and find corresponding y values. Then plot. |
|||
|
|
w = [2;2] z = [-1;0]orW'(x-z)=0are functions.... Please define more what you want to do. – Oli Oct 20 '12 at 19:30