Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
film
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
film
Commits
32e40bd0
Commit
32e40bd0
authored
17 years ago
by
Mark Woolrich
Browse files
Options
Downloads
Patches
Plain Diff
fixed threshac1 output bug which causes crash if no autocorr estimation is used with sizeTS<3
parent
c5e69cd8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
film_gls.cc
+1
-1
1 addition, 1 deletion
film_gls.cc
with
1 addition
and
1 deletion
film_gls.cc
+
1
−
1
View file @
32e40bd0
...
...
@@ -243,7 +243,7 @@ int main(int argc, char *argv[])
int
cutoff
=
sizeTS
/
2
;
if
(
globalopts
.
tukey
)
cutoff
=
globalopts
.
tukeysize
;
cutoff
=
MISCMATHS
::
Max
(
3
,
cutoff
);
cutoff
=
MISCMATHS
::
Max
(
1
,
cutoff
);
threshac
=
threshac
.
Rows
(
1
,
cutoff
);
VolumeInfo
volinfo
=
x
.
getInfo
();
volinfo
.
v
=
cutoff
;
...
...
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