How do I draw a decision boundary?
14 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Let's say I have two classes of points where class 1 has points (0, 1), (2, 3), (4, 4) and class 2 has points (2, 0), (5, 2), (6, 3), how would I go about plotting these with a k-nearest-neighbor decision boundary with k=1? I'd also like to use Euclidean distance as my metric.
Thanks!
0 comentarios
Respuestas (1)
Matthew Eicholtz
el 16 de Feb. de 2016
x = [0 2 4 2 5 6];
y = [1 3 4 0 2 3];
voronoi(x,y)
0 comentarios
Ver también
Categorías
Más información sobre Voronoi Diagram en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!