Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
deccc99c
Commit
deccc99c
authored
Feb 23, 2018
by
Davis King
Browse files
Fixed bug in unit tests.
parent
af1af6d2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
dlib/test/statistics.cpp
dlib/test/statistics.cpp
+7
-3
No files found.
dlib/test/statistics.cpp
View file @
deccc99c
...
@@ -816,6 +816,7 @@ namespace
...
@@ -816,6 +816,7 @@ namespace
{
{
rs
.
add
(
rnd
.
get_random_gaussian
()
+
1
);
rs
.
add
(
rnd
.
get_random_gaussian
()
+
1
);
tmp
[
i
]
+=
rs
.
mean
();
tmp
[
i
]
+=
rs
.
mean
();
if
(
i
>
0
)
tmp_var
[
i
]
+=
rs
.
variance
();
tmp_var
[
i
]
+=
rs
.
variance
();
}
}
}
}
...
@@ -845,10 +846,13 @@ namespace
...
@@ -845,10 +846,13 @@ namespace
{
{
rs
.
add
(
rnd
.
get_random_gaussian
()
+
1
,
rnd
.
get_random_gaussian
()
+
1
);
rs
.
add
(
rnd
.
get_random_gaussian
()
+
1
,
rnd
.
get_random_gaussian
()
+
1
);
tmp
[
i
]
+=
(
rs
.
mean_y
()
+
rs
.
mean_x
())
/
2
;
tmp
[
i
]
+=
(
rs
.
mean_y
()
+
rs
.
mean_x
())
/
2
;
if
(
i
>
0
)
{
tmp_var
[
i
]
+=
(
rs
.
variance_y
()
+
rs
.
variance_x
())
/
2
;
tmp_var
[
i
]
+=
(
rs
.
variance_y
()
+
rs
.
variance_x
())
/
2
;
tmp_covar
[
i
]
+=
rs
.
covariance
();
tmp_covar
[
i
]
+=
rs
.
covariance
();
}
}
}
}
}
// should print all 1s basically since the mean and variance should always be 1.
// should print all 1s basically since the mean and variance should always be 1.
for
(
size_t
i
=
0
;
i
<
tmp
.
size
();
++
i
)
for
(
size_t
i
=
0
;
i
<
tmp
.
size
();
++
i
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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