Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
IAH public
DeProj
Commits
8577cc4b
Commit
8577cc4b
authored
Jul 23, 2020
by
Jean-Yves TINEVEZ
Browse files
Prune duplicate edges when creating the junction graph.
parent
5f725368
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/@deproj/from_bellaiche.m
View file @
8577cc4b
...
...
@@ -19,7 +19,9 @@ function obj = from_bellaiche( ...
fprintf
(
'Building the junction graph.\n'
)
edge_table
=
table
();
edge_table
.
EndNodes
=
sides
.
vertices
;
% Prune duplicate edges.
edge_table
.
EndNodes
=
unique
(
sides
.
vertices
,
'rows'
);
node_table
=
table
();
jxy
=
vertices
.
XYs
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment