Skip to content
Snippets Groups Projects
Commit 81179284 authored by Stefan Schmiederer's avatar Stefan Schmiederer
Browse files

Changed naming for clarification.

parent 958150df
No related branches found
No related tags found
No related merge requests found
function boundaries_structure = gtMakeBoundariesStructure(boundaries, grains)
function boundaries_structure = gtMakeBoundariesStructure(boundary_map, grains)
% from the boundaries and grains volume, start to build the
% boundaries_structure.
nbounds=max(boundaries(:));
nbounds = max(boundary_map(:));
% loop through each boundary
for i=1:nbounds
list=find(boundaries(:)==i);
list=find(boundary_map(:)==i);
boundaries_structure(i).count=length(list);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment