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
e553b0fc
Commit
e553b0fc
authored
Feb 12, 2016
by
Ernesto Tapia
Browse files
Test orthogonalize.
parent
eba14d94
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
dlib/test/matrix4.cpp
dlib/test/matrix4.cpp
+10
-0
No files found.
dlib/test/matrix4.cpp
View file @
e553b0fc
...
...
@@ -631,6 +631,16 @@ namespace
3
,
3
,
3
;
DLIB_TEST
(
upperbound
(
m
,
3
)
==
M
);
}
{
matrix
<
double
,
9
,
5
>
A
=
randm
(
9
,
5
);
matrix
<
double
>
B
=
A
;
orthogonalize
(
A
);
orthogonalize
(
B
);
DLIB_TEST
(
equal
(
A
,
B
));
}
}
...
...
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