Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LEVER
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenSource
LEVER
Commits
d547693c
Commit
d547693c
authored
Feb 15, 2013
by
Mark Winter
Browse files
Options
Downloads
Patches
Plain Diff
Fix to remove deleted hulls from phenotype list.
parent
98ae5c17
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/MATLAB/+Hulls/ClearHull.m
+6
-1
6 additions, 1 deletion
src/MATLAB/+Hulls/ClearHull.m
with
6 additions
and
1 deletion
src/MATLAB/+Hulls/ClearHull.m
+
6
−
1
View file @
d547693c
...
@@ -4,7 +4,12 @@
...
@@ -4,7 +4,12 @@
% ChangeLog:
% ChangeLog:
% EW 6/8/12 created
% EW 6/8/12 created
function
ClearHull
(
hullID
)
function
ClearHull
(
hullID
)
global
CellHulls
GraphEdits
CachedCostMatrix
global
CellHulls
CellPhenotypes
GraphEdits
CachedCostMatrix
bHullPhenotype
=
(
CellPhenotypes
.
hullPhenoSet
(
1
,:)
==
hullID
);
if
(
nnz
(
bHullPhenotype
)
>
0
)
CellPhenotypes
.
hullPhenoSet
=
CellPhenotypes
.
hullPhenoSet
(:,
~
bHullPhenotype
);
end
CellHulls
(
hullID
)
.
time
=
[];
CellHulls
(
hullID
)
.
time
=
[];
CellHulls
(
hullID
)
.
points
=
[];
CellHulls
(
hullID
)
.
points
=
[];
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment