Commit 12861df6 authored by Davis King's avatar Davis King

Fixed some typos in the spec for join_rows() and join_cols()

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403700
parent 46920540
......@@ -700,7 +700,7 @@ namespace dlib
- returns a matrix R such that:
- R::type == the same type that was in a and b.
- R.nr() == a.nr() == b.nr()
- R.nc() == a.nr() + b.nc()
- R.nc() == a.nc() + b.nc()
- for all valid r and c:
- if (c < a.nc()) then
- R(r,c) == a(r,c)
......@@ -723,7 +723,7 @@ namespace dlib
- returns a matrix R such that:
- R::type == the same type that was in a and b.
- R.nr() == a.nr() + b.nr()
- R.nc() == a.nr() == b.nc()
- R.nc() == a.nc() == b.nc()
- for all valid r and c:
- if (r < a.nr()) then
- R(r,c) == a(r,c)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment