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
eba14d94
Commit
eba14d94
authored
Feb 12, 2016
by
Ernesto Tapia
Browse files
Using general matrix type in the argument of qr_decomposition::get_q
parent
4bcecf25
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
dlib/matrix/matrix_qr.h
dlib/matrix/matrix_qr.h
+4
-2
No files found.
dlib/matrix/matrix_qr.h
View file @
eba14d94
...
...
@@ -62,8 +62,9 @@ namespace dlib
const
matrix_type
get_q
(
)
const
;
template
<
typename
T
,
long
R
,
long
C
,
typename
MM
,
typename
L
>
void
get_q
(
matrix
_type
&
Q
matrix
<
T
,
R
,
C
,
MM
,
L
>
&
Q
)
const
;
template
<
typename
EXP
>
...
...
@@ -270,9 +271,10 @@ namespace dlib
// ----------------------------------------------------------------------------------------
template
<
typename
matrix_exp_type
>
template
<
typename
T
,
long
R
,
long
C
,
typename
MM
,
typename
L
>
void
qr_decomposition
<
matrix_exp_type
>::
get_q
(
matrix
_type
&
X
matrix
<
T
,
R
,
C
,
MM
,
L
>
&
X
)
const
{
#ifdef DLIB_USE_LAPACK
...
...
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