Create kdNode.m

This commit is contained in:
Ramy-Badr-Ahmed 2024-08-09 15:37:24 +02:00 committed by GitHub
parent 2ccae86f34
commit b773185c0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
% kd-tree Node
function node = kdNode(point, left, right)
node.point = point;
node.left = left;
node.right = right;
end