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
682c1129
"examples/git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "f9fd7fd7f71f18b8114b0f0ddbeb3a55c419ba02"
Commit
682c1129
authored
Feb 10, 2016
by
Davis King
Browse files
Made copying to matlab a little bit faster.
parent
0af81bb5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
dlib/matlab/mex_wrapper.cpp
dlib/matlab/mex_wrapper.cpp
+4
-3
No files found.
dlib/matlab/mex_wrapper.cpp
View file @
682c1129
...
@@ -939,12 +939,13 @@ namespace mex_binding
...
@@ -939,12 +939,13 @@ namespace mex_binding
}
}
const_temp_matrix
<
T
>
m
(
item
);
for
(
long
c
=
0
;
c
<
ite
m
.
nc
();
++
c
)
for
(
long
c
=
0
;
c
<
m
.
nc
();
++
c
)
{
{
for
(
long
r
=
0
;
r
<
ite
m
.
nr
();
++
r
)
for
(
long
r
=
0
;
r
<
m
.
nr
();
++
r
)
{
{
*
mat
++
=
ite
m
(
r
,
c
);
*
mat
++
=
m
(
r
,
c
);
}
}
}
}
}
}
...
...
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