projects
/
master-thesis.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Update KdTree tests.
[master-thesis.git]
/
src
/
Tests_hough
/
expand_matrix.m
1
function [m] = expand_matrix(m)
2
m = [m(:,1) m m(:,end)];
3
m = [m(1,:); m; m(end,:)];
4
end